Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/src/share/classes/javax/xml/crypto/dsig/SignatureMethod.java
38918 views
1
/*
2
* Copyright (c) 2005, 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: SignatureMethod.java,v 1.5 2005/05/10 16:03:46 mullan Exp $
27
*/
28
package javax.xml.crypto.dsig;
29
30
import javax.xml.crypto.AlgorithmMethod;
31
import javax.xml.crypto.XMLStructure;
32
import javax.xml.crypto.dsig.spec.SignatureMethodParameterSpec;
33
import java.security.spec.AlgorithmParameterSpec;
34
35
/**
36
* A representation of the XML <code>SignatureMethod</code> element
37
* as defined in the <a href="http://www.w3.org/TR/xmldsig-core/">
38
* W3C Recommendation for XML-Signature Syntax and Processing</a>.
39
* The XML Schema Definition is defined as:
40
* <p>
41
* <pre>
42
* &lt;element name="SignatureMethod" type="ds:SignatureMethodType"/&gt;
43
* &lt;complexType name="SignatureMethodType" mixed="true"&gt;
44
* &lt;sequence&gt;
45
* &lt;element name="HMACOutputLength" minOccurs="0" type="ds:HMACOutputLengthType"/&gt;
46
* &lt;any namespace="##any" minOccurs="0" maxOccurs="unbounded"/&gt;
47
* &lt;!-- (0,unbounded) elements from (1,1) namespace --&gt;
48
* &lt;/sequence&gt;
49
* &lt;attribute name="Algorithm" type="anyURI" use="required"/&gt;
50
* &lt;/complexType&gt;
51
* </pre>
52
*
53
* A <code>SignatureMethod</code> instance may be created by invoking the
54
* {@link XMLSignatureFactory#newSignatureMethod newSignatureMethod} method
55
* of the {@link XMLSignatureFactory} class.
56
*
57
* @author Sean Mullan
58
* @author JSR 105 Expert Group
59
* @since 1.6
60
* @see XMLSignatureFactory#newSignatureMethod(String, SignatureMethodParameterSpec)
61
*/
62
public interface SignatureMethod extends XMLStructure, AlgorithmMethod {
63
64
// All methods can be found in RFC 6931.
65
66
/**
67
* The <a href="http://www.w3.org/2000/09/xmldsig#dsa-sha1">DSA-SHA1</a>
68
* (DSS) signature method algorithm URI.
69
*/
70
String DSA_SHA1 =
71
"http://www.w3.org/2000/09/xmldsig#dsa-sha1";
72
73
/**
74
* The <a href="http://www.w3.org/2000/09/xmldsig#rsa-sha1">RSA-SHA1</a>
75
* (PKCS #1) signature method algorithm URI.
76
*/
77
String RSA_SHA1 =
78
"http://www.w3.org/2000/09/xmldsig#rsa-sha1";
79
80
/**
81
* The <a href="http://www.w3.org/2000/09/xmldsig#hmac-sha1">HMAC-SHA1</a>
82
* MAC signature method algorithm URI
83
*/
84
String HMAC_SHA1 =
85
"http://www.w3.org/2000/09/xmldsig#hmac-sha1";
86
87
/**
88
* Returns the algorithm-specific input parameters of this
89
* <code>SignatureMethod</code>.
90
*
91
* <p>The returned parameters can be typecast to a {@link
92
* SignatureMethodParameterSpec} object.
93
*
94
* @return the algorithm-specific input parameters of this
95
* <code>SignatureMethod</code> (may be <code>null</code> if not
96
* specified)
97
*/
98
AlgorithmParameterSpec getParameterSpec();
99
}
100
101