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

/openjdk9/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);
/openjdk9/jdk/src/java.base/share/classes/sun/security/provider/
H A DCtrDrbg.java50 private String cipherAlg; field in class:CtrDrbg
119 this.cipherAlg = "AES/ECB/NoPadding";
169 cipher = Cipher.getInstance(cipherAlg, "SunJCE");
174 cipher = Cipher.getInstance(cipherAlg);
177 "internal error: " + cipherAlg + " not available.", exc);
/openjdk9/jdk/src/java.base/share/classes/com/sun/crypto/provider/
H A DPBECipherCore.java57 PBECipherCore(String cipherAlg) throws NoSuchAlgorithmException, argument
59 algo = cipherAlg;
H A DPBES1Core.java57 PBES1Core(String cipherAlg) throws NoSuchAlgorithmException, argument
59 algo = cipherAlg;

Completed in 46 milliseconds