AlgorithmParameterSpec
, SignatureMethodParameterSpec
public final class RSAPSSParameterSpec extends Object implements SignatureMethodParameterSpec
PSSParameterSpec
object. The XML Schema Definition is defined as:
<xs:element name="RSAPSSParams" type="pss:RSAPSSParamsType">
<xs:annotation>
<xs:documentation>
Top level element that can be used in xs:any namespace="#other"
wildcard of ds:SignatureMethod content.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="RSAPSSParamsType">
<xs:sequence>
<xs:element ref="ds:DigestMethod" minOccurs="0"/>
<xs:element name="MaskGenerationFunction"
type="pss:MaskGenerationFunctionType" minOccurs="0"/>
<xs:element name="SaltLength" type="xs:int"
minOccurs="0"/>
<xs:element name="TrailerField" type="xs:int"
minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="MaskGenerationFunctionType">
<xs:sequence>
<xs:element ref="ds:DigestMethod" minOccurs="0"/>
</xs:sequence>
<xs:attribute name="Algorithm" type="xs:anyURI"
default="http://www.w3.org/2007/05/xmldsig-more#MGF1"/>
</xs:complexType>
Constructor | Description |
---|---|
RSAPSSParameterSpec |
Creates a new RSAPSSParameterSpec object with the specified PSSParameterSpec object. |
Modifier and Type | Method | Description |
---|---|---|
PSSParameterSpec |
getPSSParameterSpec() |
Returns the PSSParameterSpec object inside. |
public RSAPSSParameterSpec(PSSParameterSpec spec)
RSAPSSParameterSpec
object with the specified PSSParameterSpec
object.spec
- the input PSSParameterSpec
objectNullPointerException
- if spec
is nullpublic PSSParameterSpec getPSSParameterSpec()
PSSParameterSpec
object inside.PSSParameterSpec
object inside
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.xml.crypto/javax/xml/crypto/dsig/spec/RSAPSSParameterSpec.html