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

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
CBCBlockCipher.java 16 private byte[] cbcV;
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.length)
    [all...]

Completed in 94 milliseconds