May 2001
Intermediate to advanced
618 pages
20h 50m
English
Class javax.crypto.KeyGeneratorSpi
This is the service 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.
Because it is a JCE engine, it must be deployed in a specially signed
jar file.
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
|
Read now
Unlock full access