Searched refs:bufOff (Results 1 - 6 of 6) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/macs/
H A DCBCBlockCipherMac.java19 private int bufOff; field in class:CBCBlockCipherMac
102 bufOff = 0;
126 if (bufOff == buf.length)
129 bufOff = 0;
132 buf[bufOff++] = in;
146 int gapLen = blockSize - bufOff;
150 System.arraycopy(in, inOff, buf, bufOff, gapLen);
154 bufOff = 0;
167 System.arraycopy(in, inOff, buf, bufOff, len);
169 bufOff
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
H A DCTSBlockCipher.java36 bufOff = 0;
50 int total = len + bufOff;
72 return len + bufOff;
93 if (bufOff == buf.length)
98 bufOff = blockSize;
101 buf[bufOff++] = in;
143 int gapLen = buf.length - bufOff;
147 System.arraycopy(in, inOff, buf, bufOff, gapLen);
152 bufOff = blockSize;
159 System.arraycopy(in, inOff, buf, bufOff, blockSiz
[all...]
H A DGCMBlockCipher.java53 private int bufOff; field in class:GCMBlockCipher
209 this.bufOff = 0;
229 int totalData = len + bufOff;
243 return totalLength + newInputLen + bufOff;
249 int totalData = len + bufOff;
327 bufBlock[bufOff] = in;
328 if (++bufOff == bufBlock.length)
352 bufBlock[bufOff] = in[inOff + i];
353 if (++bufOff == bufBlock.length)
376 bufOff
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
H A DBufferedBlockCipher.java15 protected int bufOff; field in class:BufferedBlockCipher
41 bufOff = 0;
113 int total = len + bufOff;
147 return length + bufOff;
168 buf[bufOff++] = in;
170 if (bufOff == buf.length)
173 bufOff = 0;
216 int gapLen = buf.length - bufOff;
220 System.arraycopy(in, inOff, buf, bufOff, gapLen);
224 bufOff
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/
H A DPaddedBufferedBlockCipher.java37 bufOff = 0;
96 int total = len + bufOff;
123 int total = len + bufOff;
152 if (bufOff == buf.length)
155 bufOff = 0;
158 buf[bufOff++] = in;
200 int gapLen = buf.length - bufOff;
204 System.arraycopy(in, inOff, buf, bufOff, gapLen);
208 bufOff = 0;
221 System.arraycopy(in, inOff, buf, bufOff, le
[all...]
/external/google-tv-pairing-protocol/java/jar/
H A Dbcprov-jdk15-143.jarMETA-INF/MANIFEST.MF META-INF/BCKEY.SF META-INF/BCKEY.DSA META ...

Completed in 112 milliseconds