May 1998
Intermediate to advanced
469 pages
14h 57m
English
Class java.security.AlgorithmParametersSpi
This is the Security Provider Interface for algorithm parameters. If you want to implement your own algorithm parameters, you do so by subclassing this class and registering your implementation with an appropriate security provider.
public abstract class java.security.AlgorithmParametersSpi
extends java.lang.Object {
// Constructors
public AlgorithmParametersSpi();
// Protected Instance Methods
protected abstract byte[] engineGetEncoded();
protected abstract byte[] engineGetEncoded(String);
protected abstract AlgorithmParameterSpec
engineGetParameterSpec(Class);
protected abstract void engineInit(AlgorithmParameterSpec);
protected abstract void engineInit(byte[]);
protected abstract void engineInit(byte[], String);
protected abstract String engineToString();
}
AlgorithmParameters