Package org.bouncycastle.crypto
Class CipherKeyGenerator
- java.lang.Object
-
- org.bouncycastle.crypto.CipherKeyGenerator
-
- Direct Known Subclasses:
DESKeyGenerator,Poly1305KeyGenerator
public class CipherKeyGenerator extends java.lang.ObjectThe base class for symmetric, or secret, cipher key generators.
-
-
Constructor Summary
Constructors Constructor Description CipherKeyGenerator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]generateKey()generate a secret key.voidinit(KeyGenerationParameters param)initialise the key generator.
-
-
-
Method Detail
-
init
public void init(KeyGenerationParameters param)
initialise the key generator.- Parameters:
param- the parameters to be used for key generation
-
generateKey
public byte[] generateKey()
generate a secret key.- Returns:
- a byte array containing the key value.
-
-