May 2001
Intermediate to advanced
618 pages
20h 50m
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
|
Read now
Unlock full access