author | jjiang |
Wed, 15 Aug 2018 18:41:18 +0800 | |
changeset 51460 | 97e361fe3433 |
parent 47216 | 71c04702a3d5 |
permissions | -rw-r--r-- |
20751 | 1 |
/* |
51460
97e361fe3433
8164639: Configure PKCS11 tests to use user-supplied NSS libraries
jjiang
parents:
47216
diff
changeset
|
2 |
* Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved. |
20751 | 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 |
||
40975
680639c9b307
8165689: Fix module dependencies for sun/security/pkcs11/* tests
skovalev
parents:
37361
diff
changeset
|
24 |
/* |
20751 | 25 |
* @test |
37361
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
26 |
* @bug 7196382 8072452 |
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
27 |
* @summary Ensure that DH key pairs can be generated for 512 - 8192 bits |
20751 | 28 |
* @author Valerie Peng |
51460
97e361fe3433
8164639: Configure PKCS11 tests to use user-supplied NSS libraries
jjiang
parents:
47216
diff
changeset
|
29 |
* @library /test/lib .. |
43248
5e15de85a1a0
8172527: Rename jdk.crypto.token to jdk.crypto.cryptoki
ascarpino
parents:
42693
diff
changeset
|
30 |
* @modules jdk.crypto.cryptoki |
35379
1e8e336ef66b
8144539: Update PKCS11 tests to run with security manager
asmotrak
parents:
20751
diff
changeset
|
31 |
* @run main/othervm TestDH2048 |
1e8e336ef66b
8144539: Update PKCS11 tests to run with security manager
asmotrak
parents:
20751
diff
changeset
|
32 |
* @run main/othervm TestDH2048 sm |
20751 | 33 |
*/ |
34 |
||
35379
1e8e336ef66b
8144539: Update PKCS11 tests to run with security manager
asmotrak
parents:
20751
diff
changeset
|
35 |
import java.security.InvalidParameterException; |
1e8e336ef66b
8144539: Update PKCS11 tests to run with security manager
asmotrak
parents:
20751
diff
changeset
|
36 |
import java.security.KeyPair; |
1e8e336ef66b
8144539: Update PKCS11 tests to run with security manager
asmotrak
parents:
20751
diff
changeset
|
37 |
import java.security.KeyPairGenerator; |
1e8e336ef66b
8144539: Update PKCS11 tests to run with security manager
asmotrak
parents:
20751
diff
changeset
|
38 |
import java.security.Provider; |
20751 | 39 |
|
40 |
public class TestDH2048 extends PKCS11Test { |
|
41 |
||
42 |
private static void checkUnsupportedKeySize(KeyPairGenerator kpg, int ks) |
|
43 |
throws Exception { |
|
44 |
try { |
|
45 |
kpg.initialize(ks); |
|
46 |
throw new Exception("Expected IPE not thrown for " + ks); |
|
47 |
} catch (InvalidParameterException ipe) { |
|
48 |
} |
|
49 |
} |
|
50 |
||
35379
1e8e336ef66b
8144539: Update PKCS11 tests to run with security manager
asmotrak
parents:
20751
diff
changeset
|
51 |
@Override |
20751 | 52 |
public void main(Provider p) throws Exception { |
53 |
if (p.getService("KeyPairGenerator", "DH") == null) { |
|
54 |
System.out.println("KPG for DH not supported, skipping"); |
|
55 |
return; |
|
56 |
} |
|
57 |
KeyPairGenerator kpg = KeyPairGenerator.getInstance("DH", p); |
|
37361
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
58 |
kpg.initialize(512); |
20751 | 59 |
KeyPair kp1 = kpg.generateKeyPair(); |
37361
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
60 |
|
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
61 |
kpg.initialize(768); |
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
62 |
kp1 = kpg.generateKeyPair(); |
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
63 |
|
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
64 |
kpg.initialize(1024); |
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
65 |
kp1 = kpg.generateKeyPair(); |
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
66 |
|
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
67 |
kpg.initialize(1536); |
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
68 |
kp1 = kpg.generateKeyPair(); |
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
69 |
|
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
70 |
kpg.initialize(2048); |
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
71 |
kp1 = kpg.generateKeyPair(); |
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
72 |
|
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
73 |
try { |
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
74 |
kpg.initialize(3072); |
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
75 |
kp1 = kpg.generateKeyPair(); |
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
76 |
|
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
77 |
kpg.initialize(4096); |
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
78 |
kp1 = kpg.generateKeyPair(); |
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
79 |
|
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
80 |
kpg.initialize(6144); |
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
81 |
kp1 = kpg.generateKeyPair(); |
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
82 |
|
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
83 |
kpg.initialize(8192); |
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
84 |
kp1 = kpg.generateKeyPair(); |
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
85 |
} catch (InvalidParameterException ipe) { |
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
86 |
// NSS (as of version 3.13) has a hard coded maximum limit |
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
87 |
// of 2236 or 3072 bits for DHE keys. |
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
88 |
System.out.println("4096-bit DH key pair generation: " + ipe); |
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
89 |
if (!p.getName().equals("SunPKCS11-NSS")) { |
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
90 |
throw ipe; |
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
91 |
} |
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
92 |
} |
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
93 |
|
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
94 |
// key size must be multiples of 64 though |
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
95 |
checkUnsupportedKeySize(kpg, 2048 + 63); |
a790f7bc3878
8072452: Support DHE sizes up to 8192-bits and DSA sizes up to 3072-bits
xuelei
parents:
35379
diff
changeset
|
96 |
checkUnsupportedKeySize(kpg, 3072 + 32); |
20751 | 97 |
} |
98 |
||
99 |
public static void main(String[] args) throws Exception { |
|
35379
1e8e336ef66b
8144539: Update PKCS11 tests to run with security manager
asmotrak
parents:
20751
diff
changeset
|
100 |
main(new TestDH2048(), args); |
20751 | 101 |
} |
102 |
} |