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

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
SICBlockCipher.java 20 private byte[] counterOut;
34 this.counterOut = new byte[blockSize];
88 cipher.processBlock(counter, 0, counterOut, 0);
91 // XOR the counterOut with the plaintext producing the cipher text
93 for (int i = 0; i < counterOut.length; i++)
95 out[outOff + i] = (byte)(counterOut[i] ^ in[inOff + i]);

Completed in 59 milliseconds