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

/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/RSA/
H A DTestOAEP_KAT.java56 private static byte[] plainText, seed, cipherText, cipherText2; field in class:TestOAEP_KAT
98 cipherText = parseBytes(reader);
104 if (Arrays.equals(cipherText2, cipherText) == false) {
111 byte[] dec = c.doFinal(cipherText);
/openjdk7/jdk/src/share/classes/sun/security/jgss/krb5/
H A DCipherHelper.java920 * @param cipherText the encrypted data
930 private void desCbcDecrypt(WrapToken token, byte[] key, byte[] cipherText, argument
944 temp = des.update(cipherText, offset, WrapToken.CONFOUNDER_SIZE,
965 temp = des.update(cipherText, offset, blockSize,
977 des.update(cipherText, offset, blockSize, finalBlock);

Completed in 33 milliseconds