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

/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/DES/
H A DDesAPITest.java41 SecretKey cipherKey = null; field in class:DesAPITest
113 cipherKey = factory.generateSecret(desKeySpec);
129 cipher.init(Cipher.ENCRYPT_MODE, cipherKey, params);
H A DPaddingTest.java41 SecretKey cipherKey = null; field in class:PaddingTest
135 cipherKey = factory.generateSecret(desKeySpec);
159 cipher.init(Cipher.ENCRYPT_MODE, cipherKey, params);
177 cipher.init(Cipher.DECRYPT_MODE, cipherKey, params);
H A DPerformanceTest.java45 SecretKey cipherKey = null; field in class:PerformanceTest
169 cipherKey = factory.generateSecret(desKeySpec);
181 cipher.init(Cipher.ENCRYPT_MODE, cipherKey, params);
/openjdk7/jdk/test/javax/crypto/EncryptedPrivateKeyInfo/
H A DGetKeySpecException.java42 private static SecretKey cipherKey; field in class:GetKeySpecException
65 cipherKey = skf.generateSecret(keySpec);
150 pkcs8Spec = epkiBad.getKeySpec(cipherKey);
158 pkcs8Spec = epki.getKeySpec(cipherKey);
173 pkcs8Spec = epki.getKeySpec(cipherKey, (String)null);
185 pkcs8Spec = epkiBad.getKeySpec(cipherKey, "SunJCE");
191 pkcs8Spec = epki.getKeySpec(cipherKey, "SUN");
199 pkcs8Spec = epki.getKeySpec(cipherKey, "SunJCE");
214 pkcs8Spec = epki.getKeySpec(cipherKey, (Provider)null);
226 pkcs8Spec = epkiBad.getKeySpec(cipherKey, sunjc
[all...]
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DDESedeWrapCipher.java67 private Key cipherKey = null; field in class:DESedeWrapCipher
246 cipherKey = key;
392 String algo = cipherKey.getAlgorithm();
473 cipher.init(false, cipherKey.getAlgorithm(),
474 cipherKey.getEncoded(), IV2);
483 cipher.init(decrypting, cipherKey.getAlgorithm(),
484 cipherKey.getEncoded(), iv);
531 cipher.init(true, cipherKey.getAlgorithm(), cipherKey.getEncoded(),
544 cipher.init(decrypting, cipherKey
[all...]

Completed in 32 milliseconds