public final class RsaPssParameters
extends java.security.AlgorithmParametersSpi
For a detailed description of the values contained in a set of RSA-PSS
algorithm parameters, refer to the documentation on the corresponding
transparent algorithm parameters representation
RsaPssParameterSpec. To
convert this opaque representation into a transparent representation call
getParameterSpec(RSAPSSParameterSpec.class). Finally, for
parsing and encoding of this parameter, only the 'ASN.1' encoding is
supported; by default the 'ASN.1' encoding is used.
RsaPssSignature,
RsaPssParameterSpec| Constructor and Description |
|---|
RsaPssParameters()
The constructor; creates a new instance of RSA-PSS digital signature
algorithm parameters.
|
| Modifier and Type | Method and Description |
|---|---|
protected byte[] |
engineGetEncoded() |
protected byte[] |
engineGetEncoded(java.lang.String format) |
protected java.security.spec.AlgorithmParameterSpec |
engineGetParameterSpec(java.lang.Class paramSpec) |
protected void |
engineInit(java.security.spec.AlgorithmParameterSpec paramSpec) |
protected void |
engineInit(byte[] params) |
protected void |
engineInit(byte[] params,
java.lang.String format) |
protected java.lang.String |
engineToString() |
public RsaPssParameters()
This should never be invoked manually. It only exists so that the Java Cryptography Architecture can create new instances of RSA-PSS digital signature algorithm parameters.
protected void engineInit(byte[] params)
throws java.io.IOException
engineInit in class java.security.AlgorithmParametersSpijava.io.IOExceptionprotected void engineInit(byte[] params,
java.lang.String format)
throws java.io.IOException
engineInit in class java.security.AlgorithmParametersSpijava.io.IOExceptionprotected void engineInit(java.security.spec.AlgorithmParameterSpec paramSpec)
throws java.security.spec.InvalidParameterSpecException
engineInit in class java.security.AlgorithmParametersSpijava.security.spec.InvalidParameterSpecExceptionprotected byte[] engineGetEncoded()
throws java.io.IOException
engineGetEncoded in class java.security.AlgorithmParametersSpijava.io.IOExceptionprotected byte[] engineGetEncoded(java.lang.String format)
throws java.io.IOException
engineGetEncoded in class java.security.AlgorithmParametersSpijava.io.IOExceptionprotected java.security.spec.AlgorithmParameterSpec engineGetParameterSpec(java.lang.Class paramSpec)
throws java.security.spec.InvalidParameterSpecException
engineGetParameterSpec in class java.security.AlgorithmParametersSpijava.security.spec.InvalidParameterSpecExceptionprotected java.lang.String engineToString()
engineToString in class java.security.AlgorithmParametersSpi