author | wetmore |
Fri, 11 May 2018 15:53:12 -0700 | |
branch | JDK-8145252-TLS13-branch |
changeset 56542 | 56aaa6cb3693 |
parent 47216 | 71c04702a3d5 |
child 58242 | 94bb65cb37d3 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
56542 | 2 |
* Copyright (c) 2003, 2018, Oracle and/or its affiliates. All rights reserved. |
2 | 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 |
|
5506 | 7 |
* published by the Free Software Foundation. Oracle designates this |
2 | 8 |
* particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
* by Oracle in the LICENSE file that accompanied this code. |
2 | 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 |
* |
|
5506 | 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. |
|
2 | 24 |
*/ |
25 |
||
26 |
package java.security.spec; |
|
27 |
||
28 |
import java.security.spec.AlgorithmParameterSpec; |
|
29 |
||
30 |
/** |
|
31 |
* This class specifies the set of parameters used with mask generation |
|
56542 | 32 |
* function MGF1 in OAEP Padding and RSASSA-PSS signature scheme, as |
2 | 33 |
* defined in the |
56542 | 34 |
* <a href="https://tools.ietf.org/rfc/rfc8017.txt">PKCS#1 v2.2</a> standard. |
2 | 35 |
* |
36 |
* <p>Its ASN.1 definition in PKCS#1 standard is described below: |
|
37 |
* <pre> |
|
56542 | 38 |
* PKCS1MGFAlgorithms ALGORITHM-IDENTIFIER ::= { |
39 |
* { OID id-mgf1 PARAMETERS HashAlgorithm }, |
|
40 |
* ... -- Allows for future expansion -- |
|
41 |
* } |
|
2 | 42 |
* </pre> |
43 |
* where |
|
44 |
* <pre> |
|
56542 | 45 |
* HashAlgorithm ::= AlgorithmIdentifier { |
46 |
* {OAEP-PSSDigestAlgorithms} |
|
47 |
* } |
|
48 |
* |
|
2 | 49 |
* OAEP-PSSDigestAlgorithms ALGORITHM-IDENTIFIER ::= { |
56542 | 50 |
* { OID id-sha1 PARAMETERS NULL }| |
51 |
* { OID id-sha224 PARAMETERS NULL }| |
|
52 |
* { OID id-sha256 PARAMETERS NULL }| |
|
53 |
* { OID id-sha384 PARAMETERS NULL }| |
|
54 |
* { OID id-sha512 PARAMETERS NULL }| |
|
55 |
* { OID id-sha512-224 PARAMETERS NULL }| |
|
56 |
* { OID id-sha512-256 PARAMETERS NULL }, |
|
2 | 57 |
* ... -- Allows for future expansion -- |
58 |
* } |
|
59 |
* </pre> |
|
60 |
* @see PSSParameterSpec |
|
61 |
* @see javax.crypto.spec.OAEPParameterSpec |
|
62 |
* |
|
63 |
* @author Valerie Peng |
|
64 |
* |
|
65 |
* @since 1.5 |
|
66 |
*/ |
|
67 |
public class MGF1ParameterSpec implements AlgorithmParameterSpec { |
|
68 |
||
69 |
/** |
|
56542 | 70 |
* The MGF1ParameterSpec which uses "SHA-1" message digest |
2 | 71 |
*/ |
72 |
public static final MGF1ParameterSpec SHA1 = |
|
73 |
new MGF1ParameterSpec("SHA-1"); |
|
56542 | 74 |
|
2 | 75 |
/** |
56542 | 76 |
* The MGF1ParameterSpec which uses "SHA-224" message digest |
12685 | 77 |
*/ |
78 |
public static final MGF1ParameterSpec SHA224 = |
|
79 |
new MGF1ParameterSpec("SHA-224"); |
|
56542 | 80 |
|
12685 | 81 |
/** |
56542 | 82 |
* The MGF1ParameterSpec which uses "SHA-256" message digest |
2 | 83 |
*/ |
84 |
public static final MGF1ParameterSpec SHA256 = |
|
85 |
new MGF1ParameterSpec("SHA-256"); |
|
56542 | 86 |
|
2 | 87 |
/** |
56542 | 88 |
* The MGF1ParameterSpec which uses "SHA-384" message digest |
2 | 89 |
*/ |
90 |
public static final MGF1ParameterSpec SHA384 = |
|
91 |
new MGF1ParameterSpec("SHA-384"); |
|
56542 | 92 |
|
2 | 93 |
/** |
56542 | 94 |
* The MGF1ParameterSpec which uses SHA-512 message digest |
2 | 95 |
*/ |
96 |
public static final MGF1ParameterSpec SHA512 = |
|
97 |
new MGF1ParameterSpec("SHA-512"); |
|
98 |
||
56542 | 99 |
/** |
100 |
* The MGF1ParameterSpec which uses SHA-512/224 message digest |
|
101 |
*/ |
|
102 |
public static final MGF1ParameterSpec SHA512_224 = |
|
103 |
new MGF1ParameterSpec("SHA-512/224"); |
|
104 |
||
105 |
/** |
|
106 |
* The MGF1ParameterSpec which uses SHA-512/256 message digest |
|
107 |
*/ |
|
108 |
public static final MGF1ParameterSpec SHA512_256 = |
|
109 |
new MGF1ParameterSpec("SHA-512/256"); |
|
110 |
||
2 | 111 |
private String mdName; |
112 |
||
113 |
/** |
|
114 |
* Constructs a parameter set for mask generation function MGF1 |
|
115 |
* as defined in the PKCS #1 standard. |
|
116 |
* |
|
117 |
* @param mdName the algorithm name for the message digest |
|
118 |
* used in this mask generation function MGF1. |
|
18552
005e115dc6ee
8017326: Cleanup of the javadoc <code> tag in java.security.spec
juh
parents:
12685
diff
changeset
|
119 |
* @exception NullPointerException if {@code mdName} is null. |
2 | 120 |
*/ |
121 |
public MGF1ParameterSpec(String mdName) { |
|
122 |
if (mdName == null) { |
|
123 |
throw new NullPointerException("digest algorithm is null"); |
|
124 |
} |
|
125 |
this.mdName = mdName; |
|
126 |
} |
|
127 |
||
128 |
/** |
|
129 |
* Returns the algorithm name of the message digest used by the mask |
|
130 |
* generation function. |
|
131 |
* |
|
132 |
* @return the algorithm name of the message digest. |
|
133 |
*/ |
|
134 |
public String getDigestAlgorithm() { |
|
135 |
return mdName; |
|
136 |
} |
|
137 |
} |