API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.security.spec. PSSParameterSpec View Source
Author(s)
Valerie Peng
Since
1.4
Version
1.9 06/07/20
Serial
Hierarchy
 Object
      PSSParameterSpec
Implements
 AlgorithmParameterSpec
Subclasses
Description
public class PSSParameterSpec
  This class specifies a parameter spec for RSA-PSS signature scheme, as defined in the PKCS#1 v2.1 standard.
Constructors
private PSSParameterSpec ()
Constructs a new PSSParameterSpec as defined in the PKCS #1 standard using the default values.
public PSSParameterSpec (int saltLen)
  Creates a new PSSParameterSpec using the specified salt length and other default values as defined in PKCS#1.
public PSSParameterSpec (String mdName, String mgfName, AlgorithmParameterSpec mgfSpec, int saltLen, int trailerField)
  Creates a new PSSParameterSpec as defined in the PKCS #1 standard using the specified message digest, mask generation function, parameters for mask generation function, salt length, and trailer field values.
Methods
Hide/Show inherited methods
public String getDigestAlgorithm ()
  Returns the message digest algorithm name.
public String getMGFAlgorithm ()
  Returns the mask generation function algorithm name.
public AlgorithmParameterSpec getMGFParameters ()
  Returns the parameters for the mask generation function.
public int getSaltLength ()
  Returns the salt length in bits.
public int getTrailerField ()
  Returns the value for the trailer field, i.e.
Fields
Hide/Show inherited fields
publicfinalstatic PSSParameterSpec DEFAULT
  The PSS parameter set with all default values.
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar