Class DESede.KeyFactory
java.lang.Object
javax.crypto.SecretKeyFactorySpi
org.bouncycastle.jcajce.provider.symmetric.util.BaseSecretKeyFactory
org.bouncycastle.jcajce.provider.symmetric.DESede.KeyFactory
- All Implemented Interfaces:
PBE
- Enclosing class:
- DESede
public static class DESede.KeyFactory extends BaseSecretKeyFactory
-
Nested Class Summary
-
Field Summary
Fields inherited from class org.bouncycastle.jcajce.provider.symmetric.util.BaseSecretKeyFactory
algName, algOidFields inherited from interface org.bouncycastle.jcajce.provider.symmetric.util.PBE
MD5, OPENSSL, PKCS12, PKCS5S1, PKCS5S1_UTF8, PKCS5S2, PKCS5S2_UTF8, SHA1, SHA256 -
Constructor Summary
Constructors Constructor Description KeyFactory() -
Method Summary
Modifier and Type Method Description protected SecretKeyengineGenerateSecret(KeySpec keySpec)Generate a secret key from the specified key specification.protected KeySpecengineGetKeySpec(SecretKey key, Class keySpec)Returns the key specification of the specified secret key.Methods inherited from class org.bouncycastle.jcajce.provider.symmetric.util.BaseSecretKeyFactory
engineTranslateKey
-
Constructor Details
-
KeyFactory
public KeyFactory()
-
-
Method Details
-
engineGetKeySpec
Description copied from class:SecretKeyFactorySpiReturns the key specification of the specified secret key.- Overrides:
engineGetKeySpecin classBaseSecretKeyFactory- Parameters:
key- the secret key to get the specification from.keySpec- the target key specification class.- Returns:
- an instance of the specified key specification class.
- Throws:
InvalidKeySpecException- if the specified secret key cannot be transformed into the requested key specification.
-
engineGenerateSecret
Description copied from class:SecretKeyFactorySpiGenerate a secret key from the specified key specification.- Overrides:
engineGenerateSecretin classBaseSecretKeyFactory- Parameters:
keySpec- the key specification.- Returns:
- a secret key.
- Throws:
InvalidKeySpecException- if the specified key specification cannot be used to generate a secret key.
-