Searched defs:encodedKeyAlgorithm (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DCipherWithWrappingSpi.java160 * @param encodedKeyAlgorithm the algorithm the encodedKey is for.
165 String encodedKeyAlgorithm)
172 KeyFactory.getInstance(encodedKeyAlgorithm, "SunJCE");
180 KeyFactory.getInstance(encodedKeyAlgorithm);
187 encodedKeyAlgorithm +
206 * @param encodedKeyAlgorithm the algorithm the wrapped key is for.
211 String encodedKeyAlgorithm)
218 KeyFactory.getInstance(encodedKeyAlgorithm, "SunJCE");
226 KeyFactory.getInstance(encodedKeyAlgorithm);
233 encodedKeyAlgorithm
164 constructPublicKey(byte[] encodedKey, String encodedKeyAlgorithm) argument
210 constructPrivateKey(byte[] encodedKey, String encodedKeyAlgorithm) argument
256 constructSecretKey(byte[] encodedKey, String encodedKeyAlgorithm) argument
[all...]
H A DConstructKeys.java57 * @param encodedKeyAlgorithm the algorithm the encodedKey is for.
62 String encodedKeyAlgorithm)
69 KeyFactory.getInstance(encodedKeyAlgorithm, "SunJCE");
77 KeyFactory.getInstance(encodedKeyAlgorithm);
84 encodedKeyAlgorithm +
109 * @param encodedKeyAlgorithm the algorithm the wrapped key is for.
114 String encodedKeyAlgorithm)
121 KeyFactory.getInstance(encodedKeyAlgorithm, "SunJCE");
129 KeyFactory.getInstance(encodedKeyAlgorithm);
136 encodedKeyAlgorithm
61 constructPublicKey(byte[] encodedKey, String encodedKeyAlgorithm) argument
113 constructPrivateKey(byte[] encodedKey, String encodedKeyAlgorithm) argument
165 constructSecretKey(byte[] encodedKey, String encodedKeyAlgorithm) argument
[all...]
/openjdk7/jdk/src/windows/classes/sun/security/mscapi/
H A DRSACipher.java410 String encodedKeyAlgorithm)
414 KeyFactory keyFactory = KeyFactory.getInstance(encodedKeyAlgorithm);
421 "supports the " + encodedKeyAlgorithm + " algorithm", nsae);
430 String encodedKeyAlgorithm)
434 KeyFactory keyFactory = KeyFactory.getInstance(encodedKeyAlgorithm);
441 "supports the " + encodedKeyAlgorithm + " algorithm", nsae);
450 String encodedKeyAlgorithm) {
452 return new SecretKeySpec(encodedKey, encodedKeyAlgorithm);
409 constructPublicKey(byte[] encodedKey, String encodedKeyAlgorithm) argument
429 constructPrivateKey(byte[] encodedKey, String encodedKeyAlgorithm) argument
449 constructSecretKey(byte[] encodedKey, String encodedKeyAlgorithm) argument
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11RSACipher.java509 * @param encodedKeyAlgorithm the algorithm the encodedKey is for.
514 String encodedKeyAlgorithm)
518 KeyFactory.getInstance(encodedKeyAlgorithm);
524 encodedKeyAlgorithm +
536 * @param encodedKeyAlgorithm the algorithm the wrapped key is for.
541 String encodedKeyAlgorithm) throws InvalidKeyException,
545 KeyFactory.getInstance(encodedKeyAlgorithm);
551 encodedKeyAlgorithm +
563 * @param encodedKeyAlgorithm the algorithm the secret key is for.
568 String encodedKeyAlgorithm) {
513 constructPublicKey(byte[] encodedKey, String encodedKeyAlgorithm) argument
540 constructPrivateKey(byte[] encodedKey, String encodedKeyAlgorithm) argument
567 constructSecretKey(byte[] encodedKey, String encodedKeyAlgorithm) argument
[all...]

Completed in 33 milliseconds