Team LiB
Previous Section Next Section

PSSParameterSpecjava.security.spec

Java 1.4

This class represents algorithm parameters used with the RSA PSS encoding scheme, which is defined by version 2.1 of the RSA standard PKCS#1. This class has been substantially enhanced in Java 5.0.

Figure 14-98. java.security.spec.PSSParameterSpec


public class PSSParameterSpec implements AlgorithmParameterSpec {
// Public Constructors
     public PSSParameterSpec(int saltLen);  
5.0  public PSSParameterSpec(String mdName, String mgfName, 
        AlgorithmParameterSpec mgfSpec, 
        int saltLen, int trailerField);  
// Public Constants
5.0  public static final PSSParameterSpec DEFAULT;  
// Public Instance Methods
5.0  public String getDigestAlgorithm( );  
5.0  public String getMGFAlgorithm( );  
5.0  public AlgorithmParameterSpec getMGFParameters( );  
     public int getSaltLength( );  
5.0  public int getTrailerField( );  
}

    Team LiB
    Previous Section Next Section