Searched refs:cipherAlg (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/test/javax/crypto/EncryptedPrivateKeyInfo/
H A DGetKeySpecException2.java41 private static final String cipherAlg = "PBEWithMD5AndDES"; field in class:GetKeySpecException2
52 new EncryptedPrivateKeyInfo(cipherAlg, encryptedData);
57 Cipher c = Cipher.getInstance(cipherAlg, "SunJCE");
H A DGetKeySpec.java40 private static final String cipherAlg = "PBEWithMD5AndDES"; field in class:GetKeySpec
49 (cipherAlg, "SunJCE");
116 SecretKeyFactory skf = SecretKeyFactory.getInstance(cipherAlg, p);
118 Cipher cipher = Cipher.getInstance(cipherAlg, p);
H A DGetKeySpecInvalidEncoding.java42 private static final String cipherAlg = "PBEWithMD5AndDES"; field in class:GetKeySpecInvalidEncoding
51 (cipherAlg, "SunJCE");
115 SecretKeyFactory skf = SecretKeyFactory.getInstance(cipherAlg, p);
117 Cipher cipher = Cipher.getInstance(cipherAlg, p);
H A DGetKeySpecException.java40 private static final String cipherAlg = "PBEWithMD5AndDES"; field in class:GetKeySpecException
56 BAD_PARAMS = AlgorithmParameters.getInstance(cipherAlg, sunjce);
60 GOOD_PARAMS = AlgorithmParameters.getInstance(cipherAlg, sunjce);
64 SecretKeyFactory.getInstance(cipherAlg, "SunJCE");
77 private static Provider[] removeProviders(String cipherAlg) { argument
82 Cipher c = Cipher.getInstance(cipherAlg);
157 removedProvs = removeProviders(cipherAlg);
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DPBECipherCore.java58 PBECipherCore(String cipherAlg) throws NoSuchAlgorithmException, argument
60 algo = cipherAlg;

Completed in 65 milliseconds