Class DESedeKeyGenerator
java.lang.Object
org.bouncycastle.crypto.CipherKeyGenerator
org.bouncycastle.crypto.generators.DESKeyGenerator
org.bouncycastle.crypto.generators.DESedeKeyGenerator
-
Field Summary
Fields inherited from class org.bouncycastle.crypto.CipherKeyGenerator
random, strength
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbyte[]
generate a secret key.void
init
(KeyGenerationParameters param) initialise the key generator - if strength is set to zero the key generated will be 192 bits in size, otherwise strength can be 128 or 192 (or 112 or 168 if you don't count parity bits), depending on whether you wish to do 2-key or 3-key triple DES.
-
Constructor Details
-
DESedeKeyGenerator
public DESedeKeyGenerator()
-
-
Method Details
-
init
initialise the key generator - if strength is set to zero the key generated will be 192 bits in size, otherwise strength can be 128 or 192 (or 112 or 168 if you don't count parity bits), depending on whether you wish to do 2-key or 3-key triple DES.- Overrides:
init
in classDESKeyGenerator
- Parameters:
param
- the parameters to be used for key generation
-
generateKey
public byte[] generateKey()Description copied from class:CipherKeyGenerator
generate a secret key.- Overrides:
generateKey
in classDESKeyGenerator
- Returns:
- a byte array containing the key value.
-