OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:bufOff
(Results
1 - 3
of
3
) sorted by null
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/
BufferedBlockCipher.java
15
protected int
bufOff
;
41
bufOff
= 0;
113
int total = len +
bufOff
;
140
return length +
bufOff
;
161
buf[
bufOff
++] = in;
163
if (
bufOff
== buf.length)
166
bufOff
= 0;
209
int gapLen = buf.length -
bufOff
;
213
System.arraycopy(in, inOff, buf,
bufOff
, gapLen);
217
bufOff
= 0
[
all
...]
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/macs/
CBCBlockCipherMac.java
19
private int
bufOff
;
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
+= len
[
all
...]
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/modes/
GCMBlockCipher.java
44
private int
bufOff
;
160
this.
bufOff
= 0;
173
return len +
bufOff
+ macSize;
176
return len +
bufOff
- macSize;
181
return ((len +
bufOff
) / BLOCK_SIZE) * BLOCK_SIZE;
198
bufBlock[
bufOff
++] = in[inOff + i];
200
if (
bufOff
== bufBlock.length)
207
//
bufOff
= 0;
208
bufOff
= bufBlock.length - BLOCK_SIZE;
220
bufBlock[
bufOff
++] = in
[
all
...]
Completed in 451 milliseconds