Name

AlgorithmParameterGeneratorSpi

Synopsis

This abstract class defines the service-provider interface for algorithm-parameter generation. A security provider must implement a concrete subclass of this class for each algorithm it supports. Applications never need to use or subclass this class.

public abstract class AlgorithmParameterGeneratorSpi {
// Public Constructors
     public AlgorithmParameterGeneratorSpi( );  
// Protected Instance Methods
     protected abstract AlgorithmParameters engineGenerateParameters( );  
     protected abstract void engineInit(java.security.spec.
AlgorithmParameterSpec genParamSpec, SecureRandom random) 
throws InvalidAlgorithmParameterException;  
     protected abstract void engineInit(int size, SecureRandom random);  
}

Passed To

AlgorithmParameterGenerator.AlgorithmParameterGenerator( )

Get Java in a Nutshell, 5th Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.