author | skovalev |
Thu, 15 Sep 2016 13:03:03 +0300 | |
changeset 40975 | 680639c9b307 |
parent 35379 | 1e8e336ef66b |
child 42693 | 6645de32a866 |
permissions | -rw-r--r-- |
5155
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
1 |
/* |
35379
1e8e336ef66b
8144539: Update PKCS11 tests to run with security manager
asmotrak
parents:
32138
diff
changeset
|
2 |
* Copyright (c) 2010, 2016, Oracle and/or its affiliates. All rights reserved. |
5155
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
4 |
* |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
8 |
* |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
13 |
* accompanied this code). |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
14 |
* |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
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. |
|
5155
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
22 |
*/ |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
23 |
|
40975
680639c9b307
8165689: Fix module dependencies for sun/security/pkcs11/* tests
skovalev
parents:
35379
diff
changeset
|
24 |
/* |
5155
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
25 |
* @test %W% %E% |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
26 |
* @bug 6695485 |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
27 |
* @summary Make sure initSign/initVerify() check RSA key lengths |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
28 |
* @author Yu-Ching Valerie Peng |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
29 |
* @library .. |
40975
680639c9b307
8165689: Fix module dependencies for sun/security/pkcs11/* tests
skovalev
parents:
35379
diff
changeset
|
30 |
* @modules jdk.crypto.pkcs11 |
35379
1e8e336ef66b
8144539: Update PKCS11 tests to run with security manager
asmotrak
parents:
32138
diff
changeset
|
31 |
* @run main/othervm TestRSAKeyLength |
1e8e336ef66b
8144539: Update PKCS11 tests to run with security manager
asmotrak
parents:
32138
diff
changeset
|
32 |
* @run main/othervm TestRSAKeyLength sm |
5155
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
33 |
*/ |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
34 |
|
35379
1e8e336ef66b
8144539: Update PKCS11 tests to run with security manager
asmotrak
parents:
32138
diff
changeset
|
35 |
import java.security.InvalidKeyException; |
1e8e336ef66b
8144539: Update PKCS11 tests to run with security manager
asmotrak
parents:
32138
diff
changeset
|
36 |
import java.security.KeyPair; |
1e8e336ef66b
8144539: Update PKCS11 tests to run with security manager
asmotrak
parents:
32138
diff
changeset
|
37 |
import java.security.KeyPairGenerator; |
1e8e336ef66b
8144539: Update PKCS11 tests to run with security manager
asmotrak
parents:
32138
diff
changeset
|
38 |
import java.security.PrivateKey; |
1e8e336ef66b
8144539: Update PKCS11 tests to run with security manager
asmotrak
parents:
32138
diff
changeset
|
39 |
import java.security.Provider; |
1e8e336ef66b
8144539: Update PKCS11 tests to run with security manager
asmotrak
parents:
32138
diff
changeset
|
40 |
import java.security.PublicKey; |
1e8e336ef66b
8144539: Update PKCS11 tests to run with security manager
asmotrak
parents:
32138
diff
changeset
|
41 |
import java.security.Signature; |
1e8e336ef66b
8144539: Update PKCS11 tests to run with security manager
asmotrak
parents:
32138
diff
changeset
|
42 |
import java.security.SignedObject; |
5155
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
43 |
|
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
44 |
public class TestRSAKeyLength extends PKCS11Test { |
35379
1e8e336ef66b
8144539: Update PKCS11 tests to run with security manager
asmotrak
parents:
32138
diff
changeset
|
45 |
|
5155
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
46 |
public static void main(String[] args) throws Exception { |
35379
1e8e336ef66b
8144539: Update PKCS11 tests to run with security manager
asmotrak
parents:
32138
diff
changeset
|
47 |
main(new TestRSAKeyLength(), args); |
5155
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
48 |
} |
35379
1e8e336ef66b
8144539: Update PKCS11 tests to run with security manager
asmotrak
parents:
32138
diff
changeset
|
49 |
|
1e8e336ef66b
8144539: Update PKCS11 tests to run with security manager
asmotrak
parents:
32138
diff
changeset
|
50 |
@Override |
5155
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
51 |
public void main(Provider p) throws Exception { |
32138
23830562d3d1
8133318: Exclude intermittent failing PKCS11 tests on Solaris SPARC 11.1 and earlier
vinnie
parents:
18804
diff
changeset
|
52 |
|
23830562d3d1
8133318: Exclude intermittent failing PKCS11 tests on Solaris SPARC 11.1 and earlier
vinnie
parents:
18804
diff
changeset
|
53 |
/* |
23830562d3d1
8133318: Exclude intermittent failing PKCS11 tests on Solaris SPARC 11.1 and earlier
vinnie
parents:
18804
diff
changeset
|
54 |
* Use Solaris SPARC 11.2 or later to avoid an intermittent failure |
23830562d3d1
8133318: Exclude intermittent failing PKCS11 tests on Solaris SPARC 11.1 and earlier
vinnie
parents:
18804
diff
changeset
|
55 |
* when running SunPKCS11-Solaris (8044554) |
23830562d3d1
8133318: Exclude intermittent failing PKCS11 tests on Solaris SPARC 11.1 and earlier
vinnie
parents:
18804
diff
changeset
|
56 |
*/ |
23830562d3d1
8133318: Exclude intermittent failing PKCS11 tests on Solaris SPARC 11.1 and earlier
vinnie
parents:
18804
diff
changeset
|
57 |
if (p.getName().equals("SunPKCS11-Solaris") && |
35379
1e8e336ef66b
8144539: Update PKCS11 tests to run with security manager
asmotrak
parents:
32138
diff
changeset
|
58 |
props.getProperty("os.name").equals("SunOS") && |
1e8e336ef66b
8144539: Update PKCS11 tests to run with security manager
asmotrak
parents:
32138
diff
changeset
|
59 |
props.getProperty("os.arch").equals("sparcv9") && |
1e8e336ef66b
8144539: Update PKCS11 tests to run with security manager
asmotrak
parents:
32138
diff
changeset
|
60 |
props.getProperty("os.version").compareTo("5.11") <= 0 && |
32138
23830562d3d1
8133318: Exclude intermittent failing PKCS11 tests on Solaris SPARC 11.1 and earlier
vinnie
parents:
18804
diff
changeset
|
61 |
getDistro().compareTo("11.2") < 0) { |
23830562d3d1
8133318: Exclude intermittent failing PKCS11 tests on Solaris SPARC 11.1 and earlier
vinnie
parents:
18804
diff
changeset
|
62 |
|
23830562d3d1
8133318: Exclude intermittent failing PKCS11 tests on Solaris SPARC 11.1 and earlier
vinnie
parents:
18804
diff
changeset
|
63 |
System.out.println("SunPKCS11-Solaris provider requires " + |
23830562d3d1
8133318: Exclude intermittent failing PKCS11 tests on Solaris SPARC 11.1 and earlier
vinnie
parents:
18804
diff
changeset
|
64 |
"Solaris SPARC 11.2 or later, skipping"); |
23830562d3d1
8133318: Exclude intermittent failing PKCS11 tests on Solaris SPARC 11.1 and earlier
vinnie
parents:
18804
diff
changeset
|
65 |
return; |
23830562d3d1
8133318: Exclude intermittent failing PKCS11 tests on Solaris SPARC 11.1 and earlier
vinnie
parents:
18804
diff
changeset
|
66 |
} |
23830562d3d1
8133318: Exclude intermittent failing PKCS11 tests on Solaris SPARC 11.1 and earlier
vinnie
parents:
18804
diff
changeset
|
67 |
|
18804
8561f2098727
8020321: Problem in PKCS11 regression test TestRSAKeyLength
valeriep
parents:
12685
diff
changeset
|
68 |
boolean isValidKeyLength[] = { true, true, true, false, false }; |
12685 | 69 |
String algos[] = { "SHA1withRSA", "SHA224withRSA", "SHA256withRSA", |
5155
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
70 |
"SHA384withRSA", "SHA512withRSA" }; |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
71 |
KeyPairGenerator kpg = KeyPairGenerator.getInstance("RSA", p); |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
72 |
kpg.initialize(512); |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
73 |
KeyPair kp = kpg.generateKeyPair(); |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
74 |
PrivateKey privKey = kp.getPrivate(); |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
75 |
PublicKey pubKey = kp.getPublic(); |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
76 |
|
18804
8561f2098727
8020321: Problem in PKCS11 regression test TestRSAKeyLength
valeriep
parents:
12685
diff
changeset
|
77 |
if (algos.length != isValidKeyLength.length) { |
8561f2098727
8020321: Problem in PKCS11 regression test TestRSAKeyLength
valeriep
parents:
12685
diff
changeset
|
78 |
throw new Exception("Internal Error: number of test algos" + |
8561f2098727
8020321: Problem in PKCS11 regression test TestRSAKeyLength
valeriep
parents:
12685
diff
changeset
|
79 |
" and results length mismatch!"); |
8561f2098727
8020321: Problem in PKCS11 regression test TestRSAKeyLength
valeriep
parents:
12685
diff
changeset
|
80 |
} |
5155
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
81 |
for (int i = 0; i < algos.length; i++) { |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
82 |
Signature sig = Signature.getInstance(algos[i], p); |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
83 |
System.out.println("Testing RSA signature " + algos[i]); |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
84 |
try { |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
85 |
sig.initSign(privKey); |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
86 |
if (!isValidKeyLength[i]) { |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
87 |
throw new Exception("initSign: Expected IKE not thrown!"); |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
88 |
} |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
89 |
} catch (InvalidKeyException ike) { |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
90 |
if (isValidKeyLength[i]) { |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
91 |
throw new Exception("initSign: Unexpected " + ike); |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
92 |
} |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
93 |
} |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
94 |
try { |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
95 |
sig.initVerify(pubKey); |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
96 |
if (!isValidKeyLength[i]) { |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
97 |
throw new RuntimeException("initVerify: Expected IKE not thrown!"); |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
98 |
} |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
99 |
new SignedObject("Test string for getSignature test.", privKey, sig); |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
100 |
} catch (InvalidKeyException ike) { |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
101 |
if (isValidKeyLength[i]) { |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
102 |
throw new Exception("initSign: Unexpected " + ike); |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
103 |
} |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
104 |
} |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
105 |
} |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
106 |
} |
d70c73fdc68e
6695485: SignedObject constructor throws ProviderException if it's called using provider "SunPKCS11-Solaris"
valeriep
parents:
diff
changeset
|
107 |
} |