author | alanb |
Fri, 02 Nov 2012 15:50:11 +0000 | |
changeset 14342 | 8435a30053c1 |
parent 10328 | 06c93c42bca0 |
child 30046 | cf2c86e1819e |
permissions | -rw-r--r-- |
2 | 1 |
/* |
14342
8435a30053c1
7197491: update copyright year to match last edit in jdk8 jdk repository
alanb
parents:
10328
diff
changeset
|
2 |
* Copyright (c) 2005, 2011, 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 |
|
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 |
* |
|
5506 | 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. |
|
2 | 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 .. |
|
10328 | 30 |
* @run main/othervm GetPrivateKey |
2 | 31 |
*/ |
32 |
||
33 |
import java.util.*; |
|
34 |
||
35 |
import java.security.*; |
|
36 |
import java.security.KeyStore.*; |
|
37 |
import java.security.cert.*; |
|
38 |
||
39 |
public class GetPrivateKey extends SecmodTest { |
|
40 |
||
41 |
public static void main(String[] args) throws Exception { |
|
42 |
if (initSecmod() == false) { |
|
43 |
return; |
|
44 |
} |
|
45 |
||
46 |
String configName = BASE + SEP + "nss.cfg"; |
|
47 |
Provider p = getSunPKCS11(configName); |
|
48 |
||
49 |
System.out.println(p); |
|
50 |
Security.addProvider(p); |
|
51 |
KeyStore ks = KeyStore.getInstance("PKCS11", p); |
|
52 |
ks.load(null, password); |
|
53 |
Collection<String> aliases = new TreeSet<String>(Collections.list(ks.aliases())); |
|
54 |
System.out.println("entries: " + aliases.size()); |
|
55 |
System.out.println(aliases); |
|
56 |
||
57 |
PrivateKey privateKey = (PrivateKey)ks.getKey(keyAlias, password); |
|
58 |
System.out.println(privateKey); |
|
59 |
||
60 |
byte[] data = new byte[1024]; |
|
61 |
Random random = new Random(); |
|
62 |
random.nextBytes(data); |
|
63 |
||
64 |
System.out.println("Signing..."); |
|
65 |
Signature signature = Signature.getInstance("MD5withRSA"); |
|
66 |
signature.initSign(privateKey); |
|
67 |
signature.update(data); |
|
68 |
byte[] sig = signature.sign(); |
|
69 |
||
70 |
X509Certificate[] chain = (X509Certificate[])ks.getCertificateChain(keyAlias); |
|
71 |
signature.initVerify(chain[0].getPublicKey()); |
|
72 |
signature.update(data); |
|
73 |
boolean ok = signature.verify(sig); |
|
74 |
if (ok == false) { |
|
75 |
throw new Exception("Signature verification error"); |
|
76 |
} |
|
77 |
||
78 |
System.out.println("OK"); |
|
79 |
||
80 |
} |
|
81 |
||
82 |
} |