public class Camellia256KeyGenerator extends VarLengthKeyGenerator
An application uses
for creating a KeyGenerator object for the Camellia algorithm. For actually generating the requested 256 bit secret Camellia key from the KeyGenerator object just created, an application calls theKeyGenerator camellia_key_gen = KeyGenerator.getInstance("Camellia256");
generateKey
method after having initialized
the generator with some random seed or relied on the default system-provided
source of randomness:
SecretKey camellia_key = camellia_key_gen.generateKey();
Constructor and Description |
---|
Camellia256KeyGenerator() |
engineGenerateKey, engineInit, engineInit, engineInit