May 1998
Intermediate to advanced
469 pages
14h 57m
English
Class java.security.AlgorithmParameterGeneratorSpi
This class is the Security Provider Interface for the algorithm parameter generator. If you want to implement your own algorithm parameter generator, you subclass this class and register your implementation with an appropriate security provider.
public abstract class java.security.AlgorithmParameterGeneratorSpi {
// Instance Methods
protected abstract void engineInit(int, SecureRandom);
protected abstract void engineInit(
AlgorithmParameterSpec, SecureRandom);
protected abstract AlgorithmParameters engineGenerateParameters();
}
AlgorithmParameterGenerator