0N/A<html>
0N/A<head>
0N/A<!--
2362N/ACopyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
0N/ADO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A
0N/AThis code is free software; you can redistribute it and/or modify it
0N/Aunder the terms of the GNU General Public License version 2 only, as
2362N/Apublished by the Free Software Foundation. Oracle designates this
0N/Aparticular file as subject to the "Classpath" exception as provided
2362N/Aby Oracle in the LICENSE file that accompanied this code.
0N/A
0N/AThis code is distributed in the hope that it will be useful, but WITHOUT
0N/AANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/AFITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/Aversion 2 for more details (a copy is included in the LICENSE file that
0N/Aaccompanied this code).
0N/A
0N/AYou should have received a copy of the GNU General Public License version
0N/A2 along with this work; if not, write to the Free Software Foundation,
0N/AInc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A
2365N/APlease contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2365N/Aor visit www.oracle.com if you need additional information or have any
2365N/Aquestions.
0N/A-->
0N/A
0N/A</head>
0N/A<body>
0N/AClasses for generating and validating XML digital
0N/Asignatures. This package includes classes that represent the core elements
0N/Adefined in the W3C XML digital signature specification:
0N/A{@link javax.xml.crypto.dsig.XMLSignature XMLSignature},
0N/A{@link javax.xml.crypto.dsig.SignedInfo SignedInfo},
0N/A{@link javax.xml.crypto.dsig.CanonicalizationMethod CanonicalizationMethod},
0N/A{@link javax.xml.crypto.dsig.SignatureMethod SignatureMethod},
0N/A{@link javax.xml.crypto.dsig.Reference Reference},
0N/A{@link javax.xml.crypto.dsig.DigestMethod DigestMethod},
0N/A{@link javax.xml.crypto.dsig.XMLObject XMLObject},
0N/A{@link javax.xml.crypto.dsig.Manifest Manifest},
0N/A{@link javax.xml.crypto.dsig.SignatureProperties SignatureProperties}, and
0N/A{@link javax.xml.crypto.dsig.SignatureProperty SignatureProperty}.
0N/A<code>KeyInfo</code> types
0N/Aare defined in the {@link javax.xml.crypto.dsig.keyinfo} subpackage.
0N/A{@link javax.xml.crypto.dsig.XMLSignatureFactory XMLSignatureFactory}
0N/Ais an abstract factory that creates
0N/A{@link javax.xml.crypto.dsig.XMLSignature XMLSignature} objects from scratch
0N/Aor from a pre-existing XML representation, such as a DOM node.
0N/A{@link javax.xml.crypto.dsig.TransformService} is a service provider
0N/Ainterface for creating and plugging in implementations of
0N/Atransform and canonicalization algorithms.
0N/A
0N/A<p>Of primary significance in this package is the
0N/A{@link javax.xml.crypto.dsig.XMLSignature XMLSignature} class,
0N/Awhich allows you to sign and validate an XML digital signature.
0N/A
0N/A<h2>Package Specification</h2>
0N/A
0N/A<ul>
0N/A<li>
0N/A<a href="http://www.w3.org/TR/xmldsig-core/">
0N/AXML-Signature Syntax and Processing: W3C Recommendation</a>
0N/A<li>
0N/A<a href="http://www.ietf.org/rfc/rfc3275.txt">
0N/ARFC 3275: XML-Signature Syntax and Processing</a>
0N/A</ul>
0N/A
0N/A<p>
0N/A<dl>
0N/A<dt><b>Since:</b></dt>
0N/A <dd>1.6</dd>
0N/A</dl>
0N/A
0N/A</body>
0N/A</html>