Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/test/sun/security/pkcs11/ec/TestCurves.java
38855 views
1
/*
2
* Copyright (c) 2006, 2016, 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.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*/
23
24
/**
25
* @test
26
* @bug 6405536 6414980
27
* @summary Basic consistency test for all curves using ECDSA and ECDH
28
* @author Andreas Sterbenz
29
* @library ..
30
* @compile -XDignore.symbol.file TestCurves.java
31
* @run main/othervm TestCurves
32
* @run main/othervm TestCurves sm
33
* @key randomness
34
*/
35
36
import java.security.KeyPair;
37
import java.security.KeyPairGenerator;
38
import java.security.Provider;
39
import java.security.ProviderException;
40
import java.security.Signature;
41
import java.security.spec.ECParameterSpec;
42
import java.util.Arrays;
43
import java.util.List;
44
import java.util.Random;
45
import javax.crypto.KeyAgreement;
46
47
public class TestCurves extends PKCS11Test {
48
49
public static void main(String[] args) throws Exception {
50
main(new TestCurves(), args);
51
}
52
53
@Override
54
public void main(Provider p) throws Exception {
55
if (p.getService("KeyAgreement", "ECDH") == null) {
56
System.out.println("Not supported by provider, skipping");
57
return;
58
}
59
60
if (isBadNSSVersion(p)) {
61
return;
62
}
63
64
// Check if this is sparc for later failure avoidance.
65
boolean sparc = false;
66
if (props.getProperty("os.arch").equals("sparcv9")) {
67
sparc = true;
68
System.out.println("This is a sparcv9");
69
}
70
71
Random random = new Random();
72
byte[] data = new byte[2048];
73
random.nextBytes(data);
74
75
List<ECParameterSpec> curves = getKnownCurves(p);
76
for (ECParameterSpec params : curves) {
77
System.out.println("Testing " + params + "...");
78
KeyPairGenerator kpg = KeyPairGenerator.getInstance("EC", p);
79
kpg.initialize(params);
80
KeyPair kp1, kp2;
81
82
kp1 = kpg.generateKeyPair();
83
kp2 = kpg.generateKeyPair();
84
85
testSigning(p, "SHA1withECDSA", data, kp1, kp2);
86
// Check because Solaris ncp driver does not support these but
87
// Solaris metaslot causes them to be run.
88
try {
89
testSigning(p, "SHA224withECDSA", data, kp1, kp2);
90
testSigning(p, "SHA256withECDSA", data, kp1, kp2);
91
testSigning(p, "SHA384withECDSA", data, kp1, kp2);
92
testSigning(p, "SHA512withECDSA", data, kp1, kp2);
93
} catch (ProviderException e) {
94
if (sparc) {
95
Throwable t = e.getCause();
96
if (t instanceof sun.security.pkcs11.wrapper.PKCS11Exception &&
97
t.getMessage().equals("CKR_ATTRIBUTE_VALUE_INVALID")) {
98
System.out.print("-Failure not uncommon. Probably pre-T4.");
99
} else {
100
throw e;
101
}
102
} else {
103
throw e;
104
}
105
}
106
System.out.println();
107
108
KeyAgreement ka1 = KeyAgreement.getInstance("ECDH", p);
109
ka1.init(kp1.getPrivate());
110
ka1.doPhase(kp2.getPublic(), true);
111
byte[] secret1 = ka1.generateSecret();
112
113
KeyAgreement ka2 = KeyAgreement.getInstance("ECDH", p);
114
ka2.init(kp2.getPrivate());
115
ka2.doPhase(kp1.getPublic(), true);
116
byte[] secret2 = ka2.generateSecret();
117
118
if (Arrays.equals(secret1, secret2) == false) {
119
throw new Exception("Secrets do not match");
120
}
121
}
122
123
System.out.println("OK");
124
}
125
126
private static void testSigning(Provider p, String algorithm,
127
byte[] data, KeyPair kp1, KeyPair kp2) throws Exception {
128
System.out.print(" " + algorithm);
129
Signature s = Signature.getInstance(algorithm, p);
130
s.initSign(kp1.getPrivate());
131
s.update(data);
132
byte[] sig = s.sign();
133
134
s = Signature.getInstance(algorithm, p);
135
s.initVerify(kp1.getPublic());
136
s.update(data);
137
boolean r = s.verify(sig);
138
if (r == false) {
139
throw new Exception("Signature did not verify");
140
}
141
142
s.initVerify(kp2.getPublic());
143
s.update(data);
144
r = s.verify(sig);
145
if (r) {
146
throw new Exception("Signature should not verify");
147
}
148
}
149
}
150
151