Home
last modified time | relevance | path

Searched refs:SECRET_KEY (Results 1 – 5 of 5) sorted by relevance

/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
DCipherWrapThread.java42 Key decrypted = cip.unwrap(output, getAlgName(), Cipher.SECRET_KEY); in crypt()
/libcore/ojluni/src/main/java/sun/security/ssl/
DRSAClientKeyExchange.java147 "TlsRsaPremasterSecret", Cipher.SECRET_KEY); in RSAClientKeyExchange()
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
DCipherTest.java806 c.unwrap(arDES, "DES", Cipher.SECRET_KEY); in test_unwrap$BLjava_lang_StringI()
812 assertTrue(CIPHER_KEY_DES.equals(c.unwrap(arDES, "DES", Cipher.SECRET_KEY))); in test_unwrap$BLjava_lang_StringI()
813 assertFalse(CIPHER_KEY_DES.equals(c.unwrap(ar, "DES", Cipher.SECRET_KEY))); in test_unwrap$BLjava_lang_StringI()
824 c.unwrap(arDES, "DESede", Cipher.SECRET_KEY); in test_unwrap$BLjava_lang_StringI()
/libcore/ojluni/src/main/java/javax/crypto/
DCipher.java663 public static final int SECRET_KEY = 3; field in Cipher
2428 if ((wrappedKeyType != SECRET_KEY) && in unwrap()
/libcore/luni/src/test/java/libcore/javax/crypto/
DCipherTest.java1471 Key decryptedKey = c.unwrap(cipherText, sk.getAlgorithm(), Cipher.SECRET_KEY); in test_Cipher()
3192 Key decryptedKey = c.unwrap(cipherText, sk.getAlgorithm(), Cipher.SECRET_KEY); in checkCipher()