Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/sun/security/pkcs11/SecmodTest.java
41149 views
1
/*
2
* Copyright (c) 2005, 2013, 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
// common infrastructure for Secmod tests
26
27
import java.io.*;
28
29
import java.security.Provider;
30
31
public class SecmodTest extends PKCS11Test {
32
33
static String LIBPATH;
34
static String DBDIR;
35
static char[] password = "test12".toCharArray();
36
static String keyAlias = "mykey";
37
static boolean useSqlite = false;
38
39
static void useSqlite(boolean b) {
40
useSqlite = b;
41
}
42
43
static boolean initSecmod() throws Exception {
44
useNSS();
45
LIBPATH = getNSSLibDir();
46
if (LIBPATH == null) {
47
return false;
48
}
49
// load all the libraries except libnss3 into memory
50
if (loadNSPR(LIBPATH) == false) {
51
return false;
52
}
53
safeReload(LIBPATH + System.mapLibraryName("softokn3"));
54
safeReload(LIBPATH + System.mapLibraryName("nssckbi"));
55
56
DBDIR = System.getProperty("test.classes", ".") + SEP + "tmpdb";
57
if (useSqlite) {
58
System.setProperty("pkcs11test.nss.db", "sql:" + DBDIR);
59
} else {
60
System.setProperty("pkcs11test.nss.db", DBDIR);
61
}
62
File dbdirFile = new File(DBDIR);
63
if (dbdirFile.exists() == false) {
64
dbdirFile.mkdir();
65
}
66
67
if (useSqlite) {
68
copyFile("key4.db", BASE, DBDIR);
69
copyFile("cert9.db", BASE, DBDIR);
70
copyFile("pkcs11.txt", BASE, DBDIR);
71
} else {
72
copyFile("secmod.db", BASE, DBDIR);
73
copyFile("key3.db", BASE, DBDIR);
74
copyFile("cert8.db", BASE, DBDIR);
75
}
76
return true;
77
}
78
79
private static void copyFile(String name, String srcDir, String dstDir) throws IOException {
80
InputStream in = new FileInputStream(new File(srcDir, name));
81
OutputStream out = new FileOutputStream(new File(dstDir, name));
82
byte[] buf = new byte[2048];
83
while (true) {
84
int n = in.read(buf);
85
if (n < 0) {
86
break;
87
}
88
out.write(buf, 0, n);
89
}
90
in.close();
91
out.close();
92
}
93
94
public void main(Provider p) throws Exception {
95
// dummy
96
}
97
98
}
99
100