Searched refs:bufBlock (Results 1 – 1 of 1) sorted by relevance
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/modes/ |
D | GCMBlockCipher.java | 40 private byte[] bufBlock; field in GCMBlockCipher 117 this.bufBlock = new byte[bufLength]; in init() 198 bufBlock[bufOff++] = in[inOff + i]; in processBytes() 200 if (bufOff == bufBlock.length) in processBytes() 202 gCTRBlock(bufBlock, BLOCK_SIZE, out, outOff + resultLen); in processBytes() 205 System.arraycopy(bufBlock, BLOCK_SIZE, bufBlock, 0, macSize); in processBytes() 208 bufOff = bufBlock.length - BLOCK_SIZE; in processBytes() 220 bufBlock[bufOff++] = in; in process() 222 if (bufOff == bufBlock.length) in process() 224 gCTRBlock(bufBlock, BLOCK_SIZE, out, outOff); in process() [all …]
|