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 11 java.xml.crypto.jmod - XML Crypto Module
JDK 11 java.xml.crypto.jmod is the JMOD file for JDK 11 XML (eXtensible Markup Language) Crypto module.
JDK 11 XML Crypto module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\java.xml.crypto.jmod.
JDK 11 XML Crypto module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 XML Crypto module source code files are stored in \fyicenter\jdk-11.0.1\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/SignedInfo.java
/* * Copyright (c) 2005, 2014, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ /* * $Id: SignedInfo.java,v 1.7 2005/05/10 16:03:47 mullan Exp $ */ package javax.xml.crypto.dsig; import javax.xml.crypto.XMLStructure; import java.io.InputStream; import java.util.List; /** * An representation of the XML <code>SignedInfo</code> element as * defined in the <a href="http://www.w3.org/TR/xmldsig-core/"> * W3C Recommendation for XML-Signature Syntax and Processing</a>. * The XML Schema Definition is defined as: * <pre><code> * <element name="SignedInfo" type="ds:SignedInfoType"/> * <complexType name="SignedInfoType"> * <sequence> * <element ref="ds:CanonicalizationMethod"/> * <element ref="ds:SignatureMethod"/> * <element ref="ds:Reference" maxOccurs="unbounded"/> * </sequence> * <attribute name="Id" type="ID" use="optional"/> * </complexType> * </code></pre> * * A <code>SignedInfo</code> instance may be created by invoking one of the * {@link XMLSignatureFactory#newSignedInfo newSignedInfo} methods of the * {@link XMLSignatureFactory} class. * * @author Sean Mullan * @author JSR 105 Expert Group * @since 1.6 * @see XMLSignatureFactory#newSignedInfo(CanonicalizationMethod, SignatureMethod, List) * @see XMLSignatureFactory#newSignedInfo(CanonicalizationMethod, SignatureMethod, List, String) */ public interface SignedInfo extends XMLStructure { /** * Returns the canonicalization method of this <code>SignedInfo</code>. * * @return the canonicalization method */ CanonicalizationMethod getCanonicalizationMethod(); /** * Returns the signature method of this <code>SignedInfo</code>. * * @return the signature method */ SignatureMethod getSignatureMethod(); /** * Returns an {@link java.util.Collections#unmodifiableList * unmodifiable list} of one or more {@link Reference}s. * * @return an unmodifiable list of one or more {@link Reference}s */ List<Reference> getReferences(); /** * Returns the optional <code>Id</code> attribute of this * <code>SignedInfo</code>. * * @return the id (may be <code>null</code> if not specified) */ String getId(); /** * Returns the canonicalized signed info bytes after a signing or * validation operation. This method is useful for debugging. * * @return an <code>InputStream</code> containing the canonicalized bytes, * or <code>null</code> if this <code>SignedInfo</code> has not been * signed or validated yet */ InputStream getCanonicalizedData(); }
⏎ javax/xml/crypto/dsig/SignedInfo.java
Or download all of them as a single archive file:
File name: java.xml.crypto-11.0.1-src.zip File size: 539662 bytes Release date: 2018-11-04 Download
⇒ JDK 11 jdk.accessibility.jmod - Accessibility Module
2020-08-25, ≈86🔥, 0💬
Popular Posts:
Where Can I see Java Source Code files for Xerces Java 2.11.2? Here are Java Source Code files for X...
What Is js.jar in Rhino JavaScript 1.7R5? js.jar in Rhino JavaScript 1.7R5 is the JAR file for Rhino...
JDK 8 tools.jar is the JAR file for JDK 8 tools. It contains Java classes to support different JDK t...
What Is wstx-asl-3.2.8.jar? wstx-asl-3.2.8.jar is JAR file for the ASL component of Woodstox 3.2.8. ...
Java Architecture for XML Binding (JAXB) is a Java API that allows Java developers to map Java class...