Searched refs:inOff (Results 1 - 25 of 54) sorted by relevance

123

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/
H A DISO7816d4Padding.java41 int inOff)
43 int added = (in.length - inOff);
45 in [inOff]= (byte) 0x80;
46 inOff ++;
48 while (inOff < in.length)
50 in[inOff] = (byte) 0;
51 inOff++;
39 addPadding( byte[] in, int inOff) argument
H A DZeroBytePadding.java40 int inOff)
42 int added = (in.length - inOff);
44 while (inOff < in.length)
46 in[inOff] = (byte) 0;
47 inOff++;
38 addPadding( byte[] in, int inOff) argument
H A DTBCPadding.java43 * passed to it inside in. i.e. if inOff is zero, indicating the
50 int inOff)
52 int count = in.length - inOff;
55 if (inOff > 0)
57 code = (byte)((in[inOff - 1] & 0x01) == 0 ? 0xff : 0x00);
64 while (inOff < in.length)
66 in[inOff] = code;
67 inOff++;
48 addPadding( byte[] in, int inOff) argument
H A DX923Padding.java43 int inOff)
45 byte code = (byte)(in.length - inOff);
47 while (inOff < in.length - 1)
51 in[inOff] = 0;
55 in[inOff] = (byte)random.nextInt();
57 inOff++;
60 in[inOff] = code;
41 addPadding( byte[] in, int inOff) argument
H A DISO10126d2Padding.java49 int inOff)
51 byte code = (byte)(in.length - inOff);
53 while (inOff < (in.length - 1))
55 in[inOff] = (byte)random.nextInt();
56 inOff++;
59 in[inOff] = code;
47 addPadding( byte[] in, int inOff) argument
H A DPKCS7Padding.java40 int inOff)
42 byte code = (byte)(in.length - inOff);
44 while (inOff < in.length)
46 in[inOff] = code;
47 inOff++;
38 addPadding( byte[] in, int inOff) argument
H A DBlockCipherPadding.java32 * passed to it inside in. i.e. if inOff is zero, indicating the
39 public int addPadding(byte[] in, int inOff); argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
H A DWrapper.java14 public byte[] wrap(byte[] in, int inOff, int inLen); argument
16 public byte[] unwrap(byte[] in, int inOff, int inLen) argument
H A DAsymmetricBlockCipher.java34 * process the block of len bytes stored in in from offset inOff.
37 * @param inOff offset into the in array where the data starts
43 public byte[] processBlock(byte[] in, int inOff, int len) argument
H A DBlockCipher.java40 * @param inOff offset into the in array the data starts at.
48 public int processBlock(byte[] in, int inOff, byte[] out, int outOff) argument
H A DDigest.java33 * @param inOff the offset into the byte array where the data starts.
36 public void update(byte[] in, int inOff, int len); argument
H A DMac.java44 * @param inOff the index in the array the data begins at.
45 * @param len the length of the input starting at inOff.
49 public void update(byte[] in, int inOff, int len) argument
H A DStreamCipher.java39 * @param inOff the offset into the in array where the data to be processed starts.
45 public void processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) argument
H A DStreamBlockCipher.java75 * @param inOff the offset into the in array where the data to be processed starts.
83 int inOff,
96 cipher.processBlock(in, inOff + i, out, outOff + i);
81 processBytes( byte[] in, int inOff, int len, byte[] out, int outOff) argument
H A DBufferedBlockCipher.java176 * @param inOff the offset at which the input data starts.
186 int inOff,
213 System.arraycopy(in, inOff, buf, bufOff, gapLen);
219 inOff += gapLen;
223 resultLen += cipher.processBlock(in, inOff, out, outOff + resultLen);
226 inOff += blockSize;
230 System.arraycopy(in, inOff, buf, bufOff, len);
184 processBytes( byte[] in, int inOff, int len, byte[] out, int outOff) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
H A DGeneralDigest.java57 int inOff,
65 update(in[inOff]);
67 inOff++;
76 processWord(in, inOff);
78 inOff += xBuf.length;
88 update(in[inOff]);
90 inOff++;
130 protected abstract void processWord(byte[] in, int inOff); argument
55 update( byte[] in, int inOff, int len) argument
H A DNullDigest.java28 public void update(byte[] in, int inOff, int len) argument
30 bOut.write(in, inOff, len);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
H A DCBCBlockCipher.java133 * @param inOff offset into the in array the data starts at.
143 int inOff,
148 return (encrypting) ? encryptBlock(in, inOff, out, outOff) : decryptBlock(in, inOff, out, outOff);
167 * @param inOff offset into the in array the data starts at.
177 int inOff,
182 if ((inOff + blockSize) > in.length)
193 cbcV[i] ^= in[inOff + i];
210 * @param inOff offset into the in array the data starts at.
220 int inOff,
141 processBlock( byte[] in, int inOff, byte[] out, int outOff) argument
175 encryptBlock( byte[] in, int inOff, byte[] out, int outOff) argument
218 decryptBlock( byte[] in, int inOff, byte[] out, int outOff) argument
[all...]
H A DCFBBlockCipher.java130 * @param inOff offset into the in array the data starts at.
140 int inOff,
145 return (encrypting) ? encryptBlock(in, inOff, out, outOff) : decryptBlock(in, inOff, out, outOff);
152 * @param inOff offset into the in array the data starts at.
162 int inOff,
167 if ((inOff + blockSize) > in.length)
184 out[outOff + i] = (byte)(cfbOutV[i] ^ in[inOff + i]);
200 * @param inOff offset into the in array the data starts at.
210 int inOff,
138 processBlock( byte[] in, int inOff, byte[] out, int outOff) argument
160 encryptBlock( byte[] in, int inOff, byte[] out, int outOff) argument
208 decryptBlock( byte[] in, int inOff, byte[] out, int outOff) argument
[all...]
H A DCTSBlockCipher.java109 * @param inOff the offset at which the input data starts.
119 int inOff,
146 System.arraycopy(in, inOff, buf, bufOff, gapLen);
154 inOff += gapLen;
158 System.arraycopy(in, inOff, buf, bufOff, blockSize);
163 inOff += blockSize;
167 System.arraycopy(in, inOff, buf, bufOff, len);
117 processBytes( byte[] in, int inOff, int len, byte[] out, int outOff) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/macs/
H A DCBCBlockCipherMac.java137 int inOff,
150 System.arraycopy(in, inOff, buf, bufOff, gapLen);
156 inOff += gapLen;
160 cipher.processBlock(in, inOff, mac, 0);
163 inOff += blockSize;
167 System.arraycopy(in, inOff, buf, bufOff, len);
135 update( byte[] in, int inOff, int len) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
H A DRC2Engine.java161 int inOff,
170 if ((inOff + BLOCK_SIZE) > in.length)
182 encryptBlock(in, inOff, out, outOff);
186 decryptBlock(in, inOff, out, outOff);
205 int inOff,
211 x76 = ((in[inOff + 7] & 0xff) << 8) + (in[inOff + 6] & 0xff);
212 x54 = ((in[inOff + 5] & 0xff) << 8) + (in[inOff + 4] & 0xff);
213 x32 = ((in[inOff
159 processBlock( byte[] in, int inOff, byte[] out, int outOff) argument
203 encryptBlock( byte[] in, int inOff, byte[] out, int outOff) argument
260 decryptBlock( byte[] in, int inOff, byte[] out, int outOff) argument
[all...]
H A DDESedeEngine.java86 int inOff,
95 if ((inOff + BLOCK_SIZE) > in.length)
109 desFunc(workingKey1, in, inOff, temp, 0);
115 desFunc(workingKey3, in, inOff, temp, 0);
84 processBlock( byte[] in, int inOff, byte[] out, int outOff) argument
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
H A DDESede.java84 public void transformBlock(byte[] in, int inOff, byte[] out, int outOff) argument
93 desFunc(key1, in, inOff, out, outOff);
99 desFunc(key3, in, inOff, out, outOff);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/encodings/
H A DPKCS1Encoding.java126 int inOff,
132 return encodeBlock(in, inOff, inLen);
136 return decodeBlock(in, inOff, inLen);
142 int inOff,
182 System.arraycopy(in, inOff, block, block.length - inLen, inLen);
192 int inOff,
196 byte[] block = engine.processBlock(in, inOff, inLen);
124 processBlock( byte[] in, int inOff, int inLen) argument
140 encodeBlock( byte[] in, int inOff, int inLen) argument
190 decodeBlock( byte[] in, int inOff, int inLen) argument

Completed in 123 milliseconds

123