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/fips/TrustManagerTest.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 6323647
27
* @summary Verify that the SunJSSE trustmanager works correctly in FIPS mode
28
* @author Andreas Sterbenz
29
* @library ..
30
* @run main/othervm TrustManagerTest
31
* @run main/othervm TrustManagerTest sm TrustManagerTest.policy
32
*/
33
34
import java.io.File;
35
import java.io.FileInputStream;
36
import java.io.InputStream;
37
import java.security.KeyStore;
38
import java.security.Policy;
39
import java.security.Provider;
40
import java.security.Security;
41
import java.security.URIParameter;
42
import java.security.cert.CertificateFactory;
43
import java.security.cert.X509Certificate;
44
import javax.net.ssl.TrustManagerFactory;
45
import javax.net.ssl.X509TrustManager;
46
47
// This test belongs more in JSSE than here, but the JSSE workspace does not
48
// have the NSS test infrastructure. It will live here for the time being.
49
50
public class TrustManagerTest extends SecmodTest {
51
52
public static void main(String[] args) throws Exception {
53
if (initSecmod() == false) {
54
return;
55
}
56
57
if ("sparc".equals(System.getProperty("os.arch")) == false) {
58
// we have not updated other platforms with the proper NSS libraries yet
59
System.out.println("Test currently works only on solaris-sparc, skipping");
60
return;
61
}
62
63
String configName = BASE + SEP + "fips.cfg";
64
Provider p = getSunPKCS11(configName);
65
66
System.out.println(p);
67
Security.addProvider(p);
68
69
Security.removeProvider("SunJSSE");
70
Provider jsse = new com.sun.net.ssl.internal.ssl.Provider(p);
71
Security.addProvider(jsse);
72
System.out.println(jsse.getInfo());
73
74
KeyStore ks = KeyStore.getInstance("PKCS11", p);
75
ks.load(null, "test12".toCharArray());
76
77
X509Certificate server = loadCertificate("certs/server.cer");
78
X509Certificate ca = loadCertificate("certs/ca.cer");
79
X509Certificate anchor = loadCertificate("certs/anchor.cer");
80
81
if (args.length > 1 && "sm".equals(args[0])) {
82
Policy.setPolicy(Policy.getInstance("JavaPolicy",
83
new URIParameter(new File(BASE, args[1]).toURI())));
84
System.setSecurityManager(new SecurityManager());
85
}
86
87
KeyStore trustStore = KeyStore.getInstance("JKS");
88
trustStore.load(null, null);
89
trustStore.setCertificateEntry("anchor", anchor);
90
91
TrustManagerFactory tmf = TrustManagerFactory.getInstance("PKIX");
92
tmf.init(trustStore);
93
94
X509TrustManager tm = (X509TrustManager)tmf.getTrustManagers()[0];
95
96
X509Certificate[] chain = {server, ca, anchor};
97
98
tm.checkServerTrusted(chain, "RSA");
99
100
System.out.println("OK");
101
}
102
103
private static X509Certificate loadCertificate(String name) throws Exception {
104
try (InputStream in = new FileInputStream(BASE + SEP + name)) {
105
return (X509Certificate) CertificateFactory.getInstance("X.509")
106
.generateCertificate(in);
107
}
108
}
109
110
}
111
112