Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (322)
Collections:
Other Resources:
JDK 17 java.xml.crypto.jmod - XML Crypto Module
JDK 17 java.xml.crypto.jmod is the JMOD file for JDK 17 XML (eXtensible Markup Language) Crypto module.
JDK 17 XML Crypto module compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\java.xml.crypto.jmod.
JDK 17 XML Crypto module compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 XML Crypto module source code files are stored in \fyicenter\jdk-17.0.5\lib\src.zip\java.xml.crypto.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ javax/xml/crypto/dsig/spec/RSAPSSParameterSpec.java
/*
* Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package javax.xml.crypto.dsig.spec;
import javax.xml.crypto.dsig.SignatureMethod;
import java.security.spec.AlgorithmParameterSpec;
import java.security.spec.MGF1ParameterSpec;
import java.security.spec.PSSParameterSpec;
import java.util.Objects;
/**
* Parameters for the <a href="http://www.w3.org/2007/05/xmldsig-more#rsa-pss">
* XML Signature RSASSA-PSS Algorithm</a>. The parameters are represented as a
* {@link PSSParameterSpec} object.
* <p>
* The XML Schema Definition is defined as:
* <pre><code>
* <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>
* </code></pre>
*
* @since 17
* @see SignatureMethod#RSA_PSS
* @see <a href="https://www.ietf.org/rfc/rfc6931.txt">RFC 6931</a>
*/
public final class RSAPSSParameterSpec implements SignatureMethodParameterSpec {
private final PSSParameterSpec spec;
/**
* Creates a new {@code RSAPSSParameterSpec} object with the specified
* {@link PSSParameterSpec} object.
*
* @param spec the input {@code PSSParameterSpec} object
*
* @throws NullPointerException if {@code spec} is null
*/
public RSAPSSParameterSpec(PSSParameterSpec spec) {
this.spec = Objects.requireNonNull(spec);
}
/**
* Returns the {@code PSSParameterSpec} object inside.
*
* @return the {@code PSSParameterSpec} object inside
*/
public PSSParameterSpec getPSSParameterSpec() {
return spec;
}
}
⏎ javax/xml/crypto/dsig/spec/RSAPSSParameterSpec.java
Or download all of them as a single archive file:
File name: java.xml.crypto-17.0.5-src.zip File size: 555559 bytes Release date: 2022-09-13 Download
⇒ JDK 17 jdk.accessibility.jmod - Accessibility Module
2023-07-01, ≈79🔥, 0💬
Popular Posts:
JDK 17 java.compiler.jmod is the JMOD file for JDK 17 Compiler module. JDK 17 Compiler module compil...
commons-collections4-4.4 -sources.jaris the source JAR file for Apache Commons Collections 4.2, whic...
JRE 8 rt.jar is the JAR file for JRE 8 RT (Runtime) libraries. JRE (Java Runtime) 8 is the runtime e...
Xalan-Java, Version 2.7.1, is an XSLT processor for transforming XML documents into HTML, text, or o...
JDK 17 jdk.dynalink.jmod is the JMOD file for JDK 17 Dynamic Linking module. JDK 17 Dynamic Linking ...