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/Transform.java
/* * Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ /* * $Id: Transform.java,v 1.5 2005/05/10 16:03:48 mullan Exp $ */ package javax.xml.crypto.dsig; import java.io.OutputStream; import java.security.spec.AlgorithmParameterSpec; import javax.xml.crypto.AlgorithmMethod; import javax.xml.crypto.Data; import javax.xml.crypto.OctetStreamData; import javax.xml.crypto.XMLCryptoContext; import javax.xml.crypto.XMLStructure; import javax.xml.crypto.dsig.spec.TransformParameterSpec; /** * A representation of the XML <code>Transform</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> * <element name="Transform" type="ds:TransformType"/> * <complexType name="TransformType" mixed="true"> * <choice minOccurs="0" maxOccurs="unbounded"> * <any namespace="##other" processContents="lax"/> * <!-- (1,1) elements from (0,unbounded) namespaces --> * <element name="XPath" type="string"/> * </choice> * <attribute name="Algorithm" type="anyURI" use="required"/> * </complexType> * </pre> * * A <code>Transform</code> instance may be created by invoking the * {@link XMLSignatureFactory#newTransform newTransform} method * of the {@link XMLSignatureFactory} class. * * @author Sean Mullan * @author JSR 105 Expert Group * @since 1.6 * @see XMLSignatureFactory#newTransform(String, TransformParameterSpec) */ public interface Transform extends XMLStructure, AlgorithmMethod { /** * The <a href="http://www.w3.org/2000/09/xmldsig#base64">Base64</a> * transform algorithm URI. */ final static String BASE64 = "http://www.w3.org/2000/09/xmldsig#base64"; /** * The <a href="http://www.w3.org/2000/09/xmldsig#enveloped-signature"> * Enveloped Signature</a> transform algorithm URI. */ final static String ENVELOPED = "http://www.w3.org/2000/09/xmldsig#enveloped-signature"; /** * The <a href="http://www.w3.org/TR/1999/REC-xpath-19991116">XPath</a> * transform algorithm URI. */ final static String XPATH = "http://www.w3.org/TR/1999/REC-xpath-19991116"; /** * The <a href="http://www.w3.org/2002/06/xmldsig-filter2"> * XPath Filter 2</a> transform algorithm URI. */ final static String XPATH2 = "http://www.w3.org/2002/06/xmldsig-filter2"; /** * The <a href="http://www.w3.org/TR/1999/REC-xslt-19991116">XSLT</a> * transform algorithm URI. */ final static String XSLT = "http://www.w3.org/TR/1999/REC-xslt-19991116"; /** * Returns the algorithm-specific input parameters associated with this * <code>Transform</code>. * <p> * The returned parameters can be typecast to a * {@link TransformParameterSpec} object. * * @return the algorithm-specific input parameters (may be <code>null</code> * if not specified) */ AlgorithmParameterSpec getParameterSpec(); /** * Transforms the specified data using the underlying transform algorithm. * * @param data the data to be transformed * @param context the <code>XMLCryptoContext</code> containing * additional context (may be <code>null</code> if not applicable) * @return the transformed data * @throws NullPointerException if <code>data</code> is <code>null</code> * @throws TransformException if an error occurs while executing the * transform */ public abstract Data transform(Data data, XMLCryptoContext context) throws TransformException; /** * Transforms the specified data using the underlying transform algorithm. * If the output of this transform is an <code>OctetStreamData</code>, then * this method returns <code>null</code> and the bytes are written to the * specified <code>OutputStream</code>. Otherwise, the * <code>OutputStream</code> is ignored and the method behaves as if * {@link #transform(Data, XMLCryptoContext)} were invoked. * * @param data the data to be transformed * @param context the <code>XMLCryptoContext</code> containing * additional context (may be <code>null</code> if not applicable) * @param os the <code>OutputStream</code> that should be used to write * the transformed data to * @return the transformed data (or <code>null</code> if the data was * written to the <code>OutputStream</code> parameter) * @throws NullPointerException if <code>data</code> or <code>os</code> * is <code>null</code> * @throws TransformException if an error occurs while executing the * transform */ public abstract Data transform (Data data, XMLCryptoContext context, OutputStream os) throws TransformException; }
⏎ javax/xml/crypto/dsig/Transform.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, 82548👍, 0💬
Popular Posts:
Provides support for the runtime platform, core utility methods and the extension registry. JAR File...
Provides support for the runtime platform, core utility methods and the extension registry. JAR File...
layout.jar is a component in iText Java library to provide layout functionalities. iText Java librar...
Jackson is "the Java JSON library" or "the best JSON parser for Java". Or simply as "JSON for Java"....
JDK 11 jdk.crypto.ec.jmod is the JMOD file for JDK 11 Crypto EC module. JDK 11 Crypto EC module comp...