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

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
H A DCBCBlockCipher.java16 private byte[] cbcV; field in class:CBCBlockCipher
35 this.cbcV = new byte[blockSize];
157 System.arraycopy(IV, 0, cbcV, 0, IV.length);
188 * XOR the cbcV and the input,
189 * then encrypt the cbcV
193 cbcV[i] ^= in[inOff + i];
196 int length = cipher.processBlock(cbcV, 0, out, outOff);
199 * copy ciphertext to cbcV
201 System.arraycopy(out, outOff, cbcV, 0, cbcV
[all...]

Completed in 149 milliseconds