May 1998
Intermediate to advanced
469 pages
14h 57m
English
Class KeyPairGeneratorSpi
This is the Service Provider Interface class for the key pair generation engine; if you want to implement your own key pair generator, you must extend this class and register your implementation with an appropriate security provider. Instances of this class must be prepared to generate key pairs of a particular strength (or length); they may optionally accept an algorithmic-specific set of initialization values.
public abstract class java.security.KeyPairGeneratorSpi
extends java.lang.Object {
// Constructors
public KeyPairGeneratorSpi();
// Instance Methods
public abstract KeyPair generateKeyPair();
public abstract void initialize(int, SecureRandom);
public void initialize(AlgorithmParameterSpec, SecureRandom);
}
AlgorithmParameterSpec, KeyPairGenerator, SecureRandom