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/Secmod/GetPrivateKey.java
38855 views
1
/*
2
* Copyright (c) 2005, 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 6273877 6322208 6275523
27
* @summary make sure we can access the NSS softtoken KeyStore and use a private key
28
* @author Andreas Sterbenz
29
* @library ..
30
* @run main/othervm GetPrivateKey
31
* @run main/othervm GetPrivateKey sm policy
32
* @key randomness
33
*/
34
35
import java.io.File;
36
import java.security.KeyStore;
37
import java.security.PrivateKey;
38
import java.security.Provider;
39
import java.security.Security;
40
import java.security.Signature;
41
import java.security.cert.X509Certificate;
42
import java.util.Collection;
43
import java.util.Collections;
44
import java.util.TreeSet;
45
46
public class GetPrivateKey extends SecmodTest {
47
48
public static void main(String[] args) throws Exception {
49
if (initSecmod() == false) {
50
return;
51
}
52
53
String configName = BASE + SEP + "nss.cfg";
54
Provider p = getSunPKCS11(configName);
55
56
System.out.println(p);
57
Security.addProvider(p);
58
59
if (args.length > 1 && "sm".equals(args[0])) {
60
System.setProperty("java.security.policy",
61
BASE + File.separator + args[1]);
62
System.setSecurityManager(new SecurityManager());
63
}
64
65
KeyStore ks = KeyStore.getInstance(PKCS11, p);
66
ks.load(null, password);
67
Collection<String> aliases = new TreeSet<>(
68
Collections.list(ks.aliases()));
69
System.out.println("entries: " + aliases.size());
70
System.out.println(aliases);
71
72
PrivateKey privateKey = (PrivateKey)ks.getKey(keyAlias, password);
73
System.out.println(privateKey);
74
75
byte[] data = generateData(1024);
76
77
System.out.println("Signing...");
78
Signature signature = Signature.getInstance("MD5withRSA");
79
signature.initSign(privateKey);
80
signature.update(data);
81
byte[] sig = signature.sign();
82
83
X509Certificate[] chain =
84
(X509Certificate[]) ks.getCertificateChain(keyAlias);
85
signature.initVerify(chain[0].getPublicKey());
86
signature.update(data);
87
boolean ok = signature.verify(sig);
88
if (ok == false) {
89
throw new Exception("Signature verification error");
90
}
91
92
System.out.println("OK");
93
94
}
95
96
}
97
98