Searched defs:ofbV (Results 1 - 2 of 2) sorted by relevance

/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/modes/
H A DOFBBlockCipher.java15 private byte[] ofbV; field in class:OFBBlockCipher
36 this.ofbV = new byte[cipher.getBlockSize()];
149 cipher.processBlock(ofbV, 0, ofbOutV, 0);
152 // XOR the ofbV with the plaintext producing the cipher text (and
163 System.arraycopy(ofbV, blockSize, ofbV, 0, ofbV.length - blockSize);
164 System.arraycopy(ofbOutV, 0, ofbV, ofbV.length - blockSize, blockSize);
175 System.arraycopy(IV, 0, ofbV,
[all...]
H A DGOFBBlockCipher.java15 private byte[] ofbV; field in class:GOFBBlockCipher
46 this.ofbV = new byte[cipher.getBlockSize()];
166 cipher.processBlock(ofbV, 0, ofbOutV, 0);
172 intTobytes(N3, ofbV, 0);
173 intTobytes(N4, ofbV, 4);
175 cipher.processBlock(ofbV, 0, ofbOutV, 0);
178 // XOR the ofbV with the plaintext producing the cipher text (and
189 System.arraycopy(ofbV, blockSize, ofbV, 0, ofbV
[all...]

Completed in 290 milliseconds