Searched refs:PBEKey (Results 1 - 14 of 14) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/crypto/interfaces/
H A DPBEKey.java39 public interface PBEKey extends javax.crypto.SecretKey { interface in inherits:javax.crypto.SecretKey
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DPBKDF2HmacSHA1Factory.java93 if (key instanceof javax.crypto.interfaces.PBEKey) {
97 javax.crypto.interfaces.PBEKey pKey =
98 (javax.crypto.interfaces.PBEKey) key;
133 // Check if key implements the PBEKey
134 if (key instanceof javax.crypto.interfaces.PBEKey) {
135 javax.crypto.interfaces.PBEKey pKey =
136 (javax.crypto.interfaces.PBEKey) key;
H A DHmacPKCS12PBESHA1.java82 if (key instanceof javax.crypto.interfaces.PBEKey) {
83 javax.crypto.interfaces.PBEKey pbeKey =
84 (javax.crypto.interfaces.PBEKey) key;
H A DPBEKey.java40 final class PBEKey implements SecretKey { class in inherits:SecretKey
53 PBEKey(PBEKeySpec keySpec, String keytype) throws InvalidKeySpecException { method in class:PBEKey
H A DPBEKeyFactory.java116 return new PBEKey((PBEKeySpec)keySpec, type);
184 if (key instanceof com.sun.crypto.provider.PBEKey) {
H A DKeyProtector.java123 SecretKey sKey = new PBEKey(pbeKeySpec, "PBEWithMD5AndTripleDES");
178 new PBEKey(pbeKeySpec, "PBEWithMD5AndTripleDES");
308 SecretKey sKey = new PBEKey(pbeKeySpec, "PBEWithMD5AndTripleDES");
331 SecretKey skey = new PBEKey(pbeKeySpec, "PBEWithMD5AndTripleDES");
H A DPKCS12PBECipherCore.java235 if (key instanceof javax.crypto.interfaces.PBEKey) {
236 javax.crypto.interfaces.PBEKey pbeKey =
237 (javax.crypto.interfaces.PBEKey) key;
H A DPBKDF2KeyImpl.java52 final class PBKDF2KeyImpl implements javax.crypto.interfaces.PBEKey {
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/PBE/
H A DPKCS12Oid.java37 import javax.crypto.interfaces.PBEKey;
H A DDecryptWithoutParameters.java37 import javax.crypto.interfaces.PBEKey;
H A DPKCS12Cipher.java37 import javax.crypto.interfaces.PBEKey;
64 PBEKey key2 = new
96 class MyPBEKey implements PBEKey {
/openjdk7/jdk/test/javax/crypto/EncryptedPrivateKeyInfo/
H A DGetKeySpecException2.java37 import javax.crypto.interfaces.PBEKey;
79 class MyPBEKey implements PBEKey {
/openjdk7/jdk/test/com/sun/crypto/provider/Mac/
H A DHmacSaltLengths.java37 import javax.crypto.interfaces.PBEKey;
91 class MyPBEKey implements PBEKey {
/openjdk7/jdk/test/com/sun/crypto/provider/KeyFactory/
H A DPBKDF2HmacSHA1FactoryTest.java77 PBEKey key = (PBEKey) skf.generateSecret(keySpec);

Completed in 52 milliseconds