May 2001
Intermediate to advanced
618 pages
20h 50m
English
Class java.security.AlgorithmParametersSpi
This is the service 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
|
Read now
Unlock full access