Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/java.xml.crypto/share/classes/javax/xml/crypto/dsig/CanonicalizationMethod.java
41161 views
1
/*
2
* Copyright (c) 2005, 2019, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation. Oracle designates this
8
* particular file as subject to the "Classpath" exception as provided
9
* by Oracle in the LICENSE file that accompanied this code.
10
*
11
* This code is distributed in the hope that it will be useful, but WITHOUT
12
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14
* version 2 for more details (a copy is included in the LICENSE file that
15
* accompanied this code).
16
*
17
* You should have received a copy of the GNU General Public License version
18
* 2 along with this work; if not, write to the Free Software Foundation,
19
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20
*
21
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22
* or visit www.oracle.com if you need additional information or have any
23
* questions.
24
*/
25
/*
26
* $Id: CanonicalizationMethod.java,v 1.6 2005/05/10 16:03:45 mullan Exp $
27
*/
28
package javax.xml.crypto.dsig;
29
30
import java.security.spec.AlgorithmParameterSpec;
31
import javax.xml.crypto.dsig.spec.C14NMethodParameterSpec;
32
33
/**
34
* A representation of the XML <code>CanonicalizationMethod</code>
35
* element as defined in the
36
* <a href="http://www.w3.org/TR/xmldsig-core/">
37
* W3C Recommendation for XML-Signature Syntax and Processing</a>. The XML
38
* Schema Definition is defined as:
39
* <pre>
40
* &lt;element name="CanonicalizationMethod" type="ds:CanonicalizationMethodType"/&gt;
41
* &lt;complexType name="CanonicalizationMethodType" mixed="true"&gt;
42
* &lt;sequence&gt;
43
* &lt;any namespace="##any" minOccurs="0" maxOccurs="unbounded"/&gt;
44
* &lt;!-- (0,unbounded) elements from (1,1) namespace --&gt;
45
* &lt;/sequence&gt;
46
* &lt;attribute name="Algorithm" type="anyURI" use="required"/&gt;
47
* &lt;/complexType&gt;
48
* </pre>
49
*
50
* A <code>CanonicalizationMethod</code> instance may be created by invoking
51
* the {@link XMLSignatureFactory#newCanonicalizationMethod
52
* newCanonicalizationMethod} method of the {@link XMLSignatureFactory} class.
53
*
54
* @author Sean Mullan
55
* @author JSR 105 Expert Group
56
* @since 1.6
57
* @see XMLSignatureFactory#newCanonicalizationMethod(String, C14NMethodParameterSpec)
58
*/
59
public interface CanonicalizationMethod extends Transform {
60
61
/**
62
* The <a href="http://www.w3.org/TR/2001/REC-xml-c14n-20010315">Canonical
63
* XML (without comments)</a> canonicalization method algorithm URI.
64
*/
65
static final String INCLUSIVE =
66
"http://www.w3.org/TR/2001/REC-xml-c14n-20010315";
67
68
/**
69
* The
70
* <a href="http://www.w3.org/TR/2001/REC-xml-c14n-20010315#WithComments">
71
* Canonical XML with comments</a> canonicalization method algorithm URI.
72
*/
73
static final String INCLUSIVE_WITH_COMMENTS =
74
"http://www.w3.org/TR/2001/REC-xml-c14n-20010315#WithComments";
75
76
/**
77
* The <a href="http://www.w3.org/2001/10/xml-exc-c14n#">Exclusive
78
* Canonical XML (without comments)</a> canonicalization method algorithm
79
* URI.
80
*/
81
static final String EXCLUSIVE =
82
"http://www.w3.org/2001/10/xml-exc-c14n#";
83
84
/**
85
* The <a href="http://www.w3.org/2001/10/xml-exc-c14n#WithComments">
86
* Exclusive Canonical XML with comments</a> canonicalization method
87
* algorithm URI.
88
*/
89
static final String EXCLUSIVE_WITH_COMMENTS =
90
"http://www.w3.org/2001/10/xml-exc-c14n#WithComments";
91
92
/**
93
* The <a href="https://www.w3.org/TR/xml-c14n11/">Canonical XML 1.1
94
* (without comments)</a> canonicalization method algorithm URI.
95
*
96
* @since 13
97
*/
98
static final String INCLUSIVE_11 = "http://www.w3.org/2006/12/xml-c14n11";
99
100
/**
101
* The <a href="https://www.w3.org/TR/xml-c14n11/#WithComments">
102
* Canonical XML 1.1 with comments</a> canonicalization method algorithm
103
* URI.
104
*
105
* @since 13
106
*/
107
static final String INCLUSIVE_11_WITH_COMMENTS =
108
"http://www.w3.org/2006/12/xml-c14n11#WithComments";
109
110
/**
111
* Returns the algorithm-specific input parameters associated with this
112
* <code>CanonicalizationMethod</code>.
113
*
114
* <p>The returned parameters can be typecast to a
115
* {@link C14NMethodParameterSpec} object.
116
*
117
* @return the algorithm-specific input parameters (may be
118
* <code>null</code> if not specified)
119
*/
120
AlgorithmParameterSpec getParameterSpec();
121
}
122
123