java.security.spec
Class PSSParameterSpec

java.lang.Object
  |
  +--java.security.spec.PSSParameterSpec
All Implemented Interfaces:
AlgorithmParameterSpec

public class PSSParameterSpec
extends Object
implements AlgorithmParameterSpec

Untamed: This class specifies a parameter spec for RSA PSS encoding scheme, as defined in the PKCS#1 v2.1.

Since:
1.4
Version:
1.2 01/12/03
Author:
Valerie Peng
See Also:
AlgorithmParameterSpec, java.security.Signature

Field Summary
private  int saltLen
           
 
Constructor Summary
PSSParameterSpec(int saltLen)
          Enabled: Creates a new PSSParameterSpec given the salt length as defined in PKCS#1.
 
Method Summary
 int getSaltLength()
          Enabled: Returns the salt length in bits.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

saltLen

private int saltLen
Constructor Detail

PSSParameterSpec

public PSSParameterSpec(int saltLen)
Enabled: Creates a new PSSParameterSpec given the salt length as defined in PKCS#1.

Parameters:
saltLen - the length of salt in bits to be used in PKCS#1 PSS encoding.
Method Detail

getSaltLength

public int getSaltLength()
Enabled: Returns the salt length in bits.

Returns:
the salt length.


comments?