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

/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/crypto/
H A DCipherFactoryTest.java97 Cipher bCipher = CipherFactory.getInstance().getCipher(Cipher.ENCRYPT_MODE);
100 sameOutputDifferentCiphers(INPUT_DATA, aCipher, bCipher);
125 Cipher bCipher = CipherFactory.getInstance().getCipher(Cipher.ENCRYPT_MODE);
128 sameOutputDifferentCiphers(INPUT_DATA, aCipher, bCipher);
183 Cipher bCipher = CipherFactory.getInstance().getCipher(Cipher.ENCRYPT_MODE);
186 sameOutputDifferentCiphers(INPUT_DATA, aCipher, bCipher);
214 private byte[] sameOutputDifferentCiphers(byte[] input, Cipher aCipher, Cipher bCipher) argument
217 assertNotNull(bCipher);
218 assertNotSame(aCipher, bCipher);
221 byte[] bOutput = bCipher
[all...]

Completed in 95 milliseconds