HomeSort by relevance Sort by last modified time
    Searched full:bufblock (Results 1 - 1 of 1) sorted by null

  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/modes/
GCMBlockCipher.java 40 private byte[] bufBlock;
117 this.bufBlock = new byte[bufLength];
198 bufBlock[bufOff++] = in[inOff + i];
200 if (bufOff == bufBlock.length)
202 gCTRBlock(bufBlock, BLOCK_SIZE, out, outOff + resultLen);
205 System.arraycopy(bufBlock, BLOCK_SIZE, bufBlock, 0, macSize);
208 bufOff = bufBlock.length - BLOCK_SIZE;
209 // return bufBlock.Length;
220 bufBlock[bufOff++] = in
    [all...]

Completed in 3971 milliseconds