Class DESKeyGenerator
java.lang.Object
org.bouncycastle.crypto.CipherKeyGenerator
org.bouncycastle.crypto.generators.DESKeyGenerator
- Direct Known Subclasses:
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 64 bits in size, otherwise strength can be 64 or 56 bits (if you don't count the parity bits).
-
Constructor Details
-
DESKeyGenerator
public DESKeyGenerator()
-
-
Method Details
-
init
initialise the key generator - if strength is set to zero the key generated will be 64 bits in size, otherwise strength can be 64 or 56 bits (if you don't count the parity bits).- Overrides:
init
in classCipherKeyGenerator
- 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 classCipherKeyGenerator
- Returns:
- a byte array containing the key value.
-