Uses of Interface
java.security.spec.KeySpec
-
Uses of KeySpec in java.security
Methods in java.security with type parameters of type KeySpec Modifier and Type Method Description protected abstract <T extends KeySpec>
TKeyFactorySpi. engineGetKeySpec(Key key, Class<T> keySpec)Returns the key specification for the specified key.<T extends KeySpec>
TKeyFactory. getKeySpec(Key key, Class<T> keySpec)Returns the key specification for the specified key.Methods in java.security with parameters of type KeySpec Modifier and Type Method Description protected abstract PrivateKeyKeyFactorySpi. engineGeneratePrivate(KeySpec keySpec)Generates a instance ofPrivateKeyfrom the given key specification.protected abstract PublicKeyKeyFactorySpi. engineGeneratePublic(KeySpec keySpec)Generates a instance ofPublicKeyfrom the given key specification.PrivateKeyKeyFactory. generatePrivate(KeySpec keySpec)Generates a instance ofPrivateKeyfrom the given key specification.PublicKeyKeyFactory. generatePublic(KeySpec keySpec)Generates a instance ofPublicKeyfrom the given key specification. -
Uses of KeySpec in java.security.spec
Classes in java.security.spec that implement KeySpec Modifier and Type Class Description classDSAPrivateKeySpecThe parameters specifying a DSA private key.classDSAPublicKeySpecThe parameters specifying a DSA public key.classECPrivateKeySpecThe parameters specifying an Elliptic Curve (EC) private key.classECPublicKeySpecThe parameters specifying an Elliptic Curve (EC) public key.classEncodedKeySpecThe abstract key specification for a public or a private key in encoded format.classPKCS8EncodedKeySpecThe key specification for an encoded private key in ASN.1 format as defined in the PKCS#8 standard.classRSAMultiPrimePrivateCrtKeySpecThe key specification of a RSA multi-prime private key with the Chinese Remainder Theorem (CRT) information values used.classRSAPrivateCrtKeySpecThe key specification of a RSA private key using Chinese Remainder Theorem (CRT) values.classRSAPrivateKeySpecThe key specification of a RSA private key.classRSAPublicKeySpecThe key specification of a RSA public key.classX509EncodedKeySpecThe key specification of an X.509 encoded key in ASN.1 format. -
Uses of KeySpec in javax.crypto
Methods in javax.crypto that return KeySpec Modifier and Type Method Description protected abstract KeySpecSecretKeyFactorySpi. engineGetKeySpec(SecretKey key, Class keySpec)Returns the key specification of the specified secret key.KeySpecSecretKeyFactory. getKeySpec(SecretKey key, Class keySpec)Returns the key specification of the specified secret key.Methods in javax.crypto with parameters of type KeySpec Modifier and Type Method Description protected abstract SecretKeySecretKeyFactorySpi. engineGenerateSecret(KeySpec keySpec)Generate a secret key from the specified key specification.SecretKeySecretKeyFactory. generateSecret(KeySpec keySpec)Generate a secret key from the specified key specification. -
Uses of KeySpec in javax.crypto.spec
Classes in javax.crypto.spec that implement KeySpec Modifier and Type Class Description classDESedeKeySpecThe key specification for a triple-DES (DES-EDE) key.classDESKeySpecThe key specification for a DES key.classDHPrivateKeySpecThe key specification for a Diffie-Hellman private key.classDHPublicKeySpecThe key specification for a Diffie-Hellman public key.classPBEKeySpecThe key specification for a password based encryption key.classSecretKeySpecA key specification for aSecretKeyand also a secret key implementation that is provider-independent. -
Uses of KeySpec in org.apache.harmony.security.provider.crypto
Methods in org.apache.harmony.security.provider.crypto with type parameters of type KeySpec Modifier and Type Method Description protected <T extends KeySpec>
TDSAKeyFactoryImpl. engineGetKeySpec(Key key, Class<T> keySpec)This method returns a specification for the supplied key.Methods in org.apache.harmony.security.provider.crypto with parameters of type KeySpec Modifier and Type Method Description protected PrivateKeyDSAKeyFactoryImpl. engineGeneratePrivate(KeySpec keySpec)This method generates a DSAPrivateKey object from the provided key specification.protected PublicKeyDSAKeyFactoryImpl. engineGeneratePublic(KeySpec keySpec)This method generates a DSAPublicKey object from the provided key specification. -
Uses of KeySpec in org.bouncycastle.jcajce.provider.asymmetric.dh
Methods in org.bouncycastle.jcajce.provider.asymmetric.dh that return KeySpec Modifier and Type Method Description protected KeySpecKeyFactorySpi. engineGetKeySpec(Key key, Class spec)Methods in org.bouncycastle.jcajce.provider.asymmetric.dh with parameters of type KeySpec Modifier and Type Method Description protected PrivateKeyKeyFactorySpi. engineGeneratePrivate(KeySpec keySpec)protected PublicKeyKeyFactorySpi. engineGeneratePublic(KeySpec keySpec) -
Uses of KeySpec in org.bouncycastle.jcajce.provider.asymmetric.dsa
Methods in org.bouncycastle.jcajce.provider.asymmetric.dsa that return KeySpec Modifier and Type Method Description protected KeySpecKeyFactorySpi. engineGetKeySpec(Key key, Class spec)Methods in org.bouncycastle.jcajce.provider.asymmetric.dsa with parameters of type KeySpec Modifier and Type Method Description protected PrivateKeyKeyFactorySpi. engineGeneratePrivate(KeySpec keySpec)protected PublicKeyKeyFactorySpi. engineGeneratePublic(KeySpec keySpec) -
Uses of KeySpec in org.bouncycastle.jcajce.provider.asymmetric.ec
Methods in org.bouncycastle.jcajce.provider.asymmetric.ec that return KeySpec Modifier and Type Method Description protected KeySpecKeyFactorySpi. engineGetKeySpec(Key key, Class spec)Methods in org.bouncycastle.jcajce.provider.asymmetric.ec with parameters of type KeySpec Modifier and Type Method Description protected PrivateKeyKeyFactorySpi. engineGeneratePrivate(KeySpec keySpec)protected PublicKeyKeyFactorySpi. engineGeneratePublic(KeySpec keySpec) -
Uses of KeySpec in org.bouncycastle.jcajce.provider.asymmetric.rsa
Methods in org.bouncycastle.jcajce.provider.asymmetric.rsa that return KeySpec Modifier and Type Method Description protected KeySpecKeyFactorySpi. engineGetKeySpec(Key key, Class spec)Methods in org.bouncycastle.jcajce.provider.asymmetric.rsa with parameters of type KeySpec Modifier and Type Method Description protected PrivateKeyKeyFactorySpi. engineGeneratePrivate(KeySpec keySpec)protected PublicKeyKeyFactorySpi. engineGeneratePublic(KeySpec keySpec) -
Uses of KeySpec in org.bouncycastle.jcajce.provider.asymmetric.util
Methods in org.bouncycastle.jcajce.provider.asymmetric.util that return KeySpec Modifier and Type Method Description protected KeySpecBaseKeyFactorySpi. engineGetKeySpec(Key key, Class spec)Methods in org.bouncycastle.jcajce.provider.asymmetric.util with parameters of type KeySpec Modifier and Type Method Description protected PrivateKeyBaseKeyFactorySpi. engineGeneratePrivate(KeySpec keySpec)protected PublicKeyBaseKeyFactorySpi. engineGeneratePublic(KeySpec keySpec) -
Uses of KeySpec in org.bouncycastle.jcajce.provider.asymmetric.x509
Methods in org.bouncycastle.jcajce.provider.asymmetric.x509 that return KeySpec Modifier and Type Method Description protected KeySpecKeyFactory. engineGetKeySpec(Key key, Class keySpec)Methods in org.bouncycastle.jcajce.provider.asymmetric.x509 with parameters of type KeySpec Modifier and Type Method Description protected PrivateKeyKeyFactory. engineGeneratePrivate(KeySpec keySpec)protected PublicKeyKeyFactory. engineGeneratePublic(KeySpec keySpec) -
Uses of KeySpec in org.bouncycastle.jcajce.provider.digest
Methods in org.bouncycastle.jcajce.provider.digest with parameters of type KeySpec Modifier and Type Method Description protected SecretKeySHA1.BasePBKDF2WithHmacSHA1. engineGenerateSecret(KeySpec keySpec) -
Uses of KeySpec in org.bouncycastle.jcajce.provider.symmetric
Methods in org.bouncycastle.jcajce.provider.symmetric that return KeySpec Modifier and Type Method Description protected KeySpecDES.KeyFactory. engineGetKeySpec(SecretKey key, Class keySpec)protected KeySpecDESede.KeyFactory. engineGetKeySpec(SecretKey key, Class keySpec)Methods in org.bouncycastle.jcajce.provider.symmetric with parameters of type KeySpec Modifier and Type Method Description protected SecretKeyDES.DESPBEKeyFactory. engineGenerateSecret(KeySpec keySpec)protected SecretKeyDES.KeyFactory. engineGenerateSecret(KeySpec keySpec)protected SecretKeyDESede.KeyFactory. engineGenerateSecret(KeySpec keySpec) -
Uses of KeySpec in org.bouncycastle.jcajce.provider.symmetric.util
Methods in org.bouncycastle.jcajce.provider.symmetric.util that return KeySpec Modifier and Type Method Description protected KeySpecBaseSecretKeyFactory. engineGetKeySpec(SecretKey key, Class keySpec)Methods in org.bouncycastle.jcajce.provider.symmetric.util with parameters of type KeySpec Modifier and Type Method Description protected SecretKeyBaseSecretKeyFactory. engineGenerateSecret(KeySpec keySpec)protected SecretKeyPBESecretKeyFactory. engineGenerateSecret(KeySpec keySpec) -
Uses of KeySpec in org.bouncycastle.jce.spec
Classes in org.bouncycastle.jce.spec that implement KeySpec Modifier and Type Class Description classECKeySpecbase class for an Elliptic Curve Key SpecclassECPrivateKeySpecElliptic Curve private key specification.classECPublicKeySpecElliptic Curve public key specification -
Uses of KeySpec in org.conscrypt
Methods in org.conscrypt with type parameters of type KeySpec Modifier and Type Method Description protected <T extends KeySpec>
TOpenSSLDSAKeyFactory. engineGetKeySpec(Key key, Class<T> keySpec)protected <T extends KeySpec>
TOpenSSLECKeyFactory. engineGetKeySpec(Key key, Class<T> keySpec)protected <T extends KeySpec>
TOpenSSLRSAKeyFactory. engineGetKeySpec(Key key, Class<T> keySpec)Methods in org.conscrypt with parameters of type KeySpec Modifier and Type Method Description protected PrivateKeyOpenSSLDSAKeyFactory. engineGeneratePrivate(KeySpec keySpec)protected PrivateKeyOpenSSLECKeyFactory. engineGeneratePrivate(KeySpec keySpec)protected PrivateKeyOpenSSLRSAKeyFactory. engineGeneratePrivate(KeySpec keySpec)protected PublicKeyOpenSSLDSAKeyFactory. engineGeneratePublic(KeySpec keySpec)protected PublicKeyOpenSSLECKeyFactory. engineGeneratePublic(KeySpec keySpec)protected PublicKeyOpenSSLRSAKeyFactory. engineGeneratePublic(KeySpec keySpec)