API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.security. AlgorithmParametersSpi View Source
Author(s)
Jan Luehe
Since
1.2
Version
1.14, 11/17/05
Serial
Hierarchy
 Object
      AlgorithmParametersSpi
Implements
Subclasses
Description
publicabstract abstract class AlgorithmParametersSpi
  This class defines the Service Provider Interface (SPI) for the AlgorithmParameters class, which is used to manage algorithm parameters.
Constructors
public AlgorithmParametersSpi ()
Methods
Hide/Show inherited methods
protectedabstract byte engineGetEncoded () throws IOException
  Returns the parameters in their primary encoding format.
protectedabstract byte engineGetEncoded (String format) throws IOException
  Returns the parameters encoded in the specified format.
protectedabstract T engineGetParameterSpec (Class< T> paramSpec) throws InvalidParameterSpecException
  Returns a (transparent) specification of this parameters object.
protectedabstract void engineInit (AlgorithmParameterSpec paramSpec) throws InvalidParameterSpecException
  Initializes this parameters object using the parameters specified in paramSpec.
protectedabstract void engineInit (byte[] params) throws IOException
  Imports the specified parameters and decodes them according to the primary decoding format for parameters.
protectedabstract void engineInit (byte[] params, String format) throws IOException
  Imports the parameters from params and decodes them according to the specified decoding format.
protectedabstract String engineToString ()
  Returns a formatted string describing the parameters.
Fields
Hide/Show inherited fields
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar