| java.lang.Object java.security.spec.PSSParameterSpec
Constructor Summary | |
public | PSSParameterSpec(int saltLen) Creates a new PSSParameterSpec
given the salt length as defined in PKCS#1. |
Method Summary | |
public int | getSaltLength() Returns the salt length in bits. |
PSSParameterSpec | public PSSParameterSpec(int saltLen)(Code) | | 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. exception: IllegalArgumentException - if saltLen isless than 0. |
getSaltLength | public int getSaltLength()(Code) | | Returns the salt length in bits.
the salt length. |
|
|