May 1998
Intermediate to advanced
469 pages
14h 57m
English
Class javax.crypto.KeyGeneratorSpi
This is the Security Provider Interface for the
KeyGenerator class. To create an implementation
of a key generation algorithm, make a subclass of this class and
register the implementation with an appropriate security provider.
public abstract class javax.crypto.KeyGeneratorSpi
extends java.lang.Object {
// Constructors
public KeyGeneratorSpi();
// Protected Instance Methods
protected abstract SecretKey engineGenerateKey();
protected abstract void engineInit(int, SecureRandom);
protected abstract void engineInit(SecureRandom);
protected abstract void engineInit(AlgorithmParameterSpec,
SecureRandom);
}
AlgorithmParameterSpec, KeyGenerator, SecretKey, SecureRandom