jdk/test/sun/security/pkcs11/rsa/TestKeyPairGenerator.java
author asmotrak
Wed, 22 Jun 2016 15:58:08 -0700
changeset 39142 bf48a9f13cf2
parent 35379 1e8e336ef66b
child 40112 fba684000cfc
permissions -rw-r--r--
8074580: sun/security/pkcs11/rsa/TestKeyPairGenerator.java fails due to PKCS11Exception: CKR_FUNCTION_FAILED Reviewed-by: valeriep
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
35379
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 34875
diff changeset
     2
 * Copyright (c) 2003, 2016, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
 * @test
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 * @bug 4856966
30049
dde45bde92e2 8079107: Update TestKeyPairGenerator.java to use random number generator library
darcy
parents: 30046
diff changeset
    27
 * @summary Verify that the RSA KeyPairGenerator works (use -Dseed=X to set PRNG seed)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * @author Andreas Sterbenz
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * @library ..
30049
dde45bde92e2 8079107: Update TestKeyPairGenerator.java to use random number generator library
darcy
parents: 30046
diff changeset
    30
 * @library /lib/testlibrary
dde45bde92e2 8079107: Update TestKeyPairGenerator.java to use random number generator library
darcy
parents: 30046
diff changeset
    31
 * @build jdk.testlibrary.*
39142
bf48a9f13cf2 8074580: sun/security/pkcs11/rsa/TestKeyPairGenerator.java fails due to PKCS11Exception: CKR_FUNCTION_FAILED
asmotrak
parents: 35379
diff changeset
    32
 * @run main/othervm -Djava.security.debug=sunpkcs11 TestKeyPairGenerator
bf48a9f13cf2 8074580: sun/security/pkcs11/rsa/TestKeyPairGenerator.java fails due to PKCS11Exception: CKR_FUNCTION_FAILED
asmotrak
parents: 35379
diff changeset
    33
 * @run main/othervm -Djava.security.debug=sunpkcs11 TestKeyPairGenerator
bf48a9f13cf2 8074580: sun/security/pkcs11/rsa/TestKeyPairGenerator.java fails due to PKCS11Exception: CKR_FUNCTION_FAILED
asmotrak
parents: 35379
diff changeset
    34
 *                                                   sm TestKeyPairGenerator.policy
30046
cf2c86e1819e 8078334: Mark regression tests using randomness
darcy
parents: 30045
diff changeset
    35
 * @key intermittent randomness
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import java.math.BigInteger;
35379
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 34875
diff changeset
    39
import java.security.KeyPair;
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 34875
diff changeset
    40
import java.security.KeyPairGenerator;
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 34875
diff changeset
    41
import java.security.PrivateKey;
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 34875
diff changeset
    42
import java.security.Provider;
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 34875
diff changeset
    43
import java.security.PublicKey;
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 34875
diff changeset
    44
import java.security.Signature;
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 34875
diff changeset
    45
import java.security.interfaces.RSAPrivateCrtKey;
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 34875
diff changeset
    46
import java.security.interfaces.RSAPublicKey;
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 34875
diff changeset
    47
import java.security.spec.RSAKeyGenParameterSpec;
30436
17827057ef5a 8079782: RandomFactory should be in the jdk.testlibrary package
chegar
parents: 30049
diff changeset
    48
import jdk.testlibrary.RandomFactory;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
public class TestKeyPairGenerator extends PKCS11Test {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    private static Provider provider;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    private static byte[] data;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
35379
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 34875
diff changeset
    56
    private static void testSignature(String algorithm, PrivateKey privateKey,
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 34875
diff changeset
    57
            PublicKey publicKey) throws Exception {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
        System.out.println("Testing " + algorithm + "...");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        Signature s = Signature.getInstance(algorithm, provider);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
        s.initSign(privateKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
        s.update(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        byte[] sig = s.sign();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
        s.initVerify(publicKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
        s.update(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
        boolean result = s.verify(sig);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
        if (result == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
            throw new Exception("Verification failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    private static void test(PrivateKey privateKey, PublicKey publicKey) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        testSignature("MD2withRSA", privateKey, publicKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
        testSignature("MD5withRSA", privateKey, publicKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        testSignature("SHA1withRSA", privateKey, publicKey);
12685
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 5506
diff changeset
    75
        testSignature("SHA224withRSA", privateKey, publicKey);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
        testSignature("SHA256withRSA", privateKey, publicKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        RSAPublicKey rsaKey = (RSAPublicKey)publicKey;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        if (rsaKey.getModulus().bitLength() > 512) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
            // for SHA384 and SHA512 the data is too long for 512 bit keys
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
            testSignature("SHA384withRSA", privateKey, publicKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
            testSignature("SHA512withRSA", privateKey, publicKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    // regression test for 4865198
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    private static void testInvalidSignature(KeyPair kp1, KeyPair kp2) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        System.out.println("Testing signature with incorrect key...");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        Signature sig = Signature.getInstance("MD5withRSA", provider);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        sig.initSign(kp1.getPrivate());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        byte[] data = new byte[100];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        sig.update(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        byte[] signature = sig.sign();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        sig.initVerify(kp1.getPublic());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        sig.update(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        if (sig.verify(signature) == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
            throw new Exception("verification failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        sig.initVerify(kp2.getPublic());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        sig.update(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        // verify needs to return false and not throw an Exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
        if (sig.verify(signature)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
            throw new Exception("verification unexpectedly succeeded");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    public static void main(String[] args) throws Exception {
35379
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 34875
diff changeset
   107
        main(new TestKeyPairGenerator(), args);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
35379
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 34875
diff changeset
   110
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    public void main(Provider p) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        long start = System.currentTimeMillis();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        provider = p;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
        data = new byte[2048];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        // keypair generation is very slow, test only a few short keys
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        int[] keyLengths = {512, 512, 1024};
34875
ac52689ae546 8129560: TestKeyPairGenerator.java fails on Solaris because private exponent needs to comply with FIPS 186-4
asmotrak
parents: 30436
diff changeset
   117
        BigInteger[] pubExps = {null, RSAKeyGenParameterSpec.F4, null};
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
        KeyPair[] keyPairs = new KeyPair[3];
30049
dde45bde92e2 8079107: Update TestKeyPairGenerator.java to use random number generator library
darcy
parents: 30046
diff changeset
   119
        RandomFactory.getRandom().nextBytes(data);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        KeyPairGenerator kpg = KeyPairGenerator.getInstance("RSA", provider);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
        for (int i = 0; i < keyLengths.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
            int len = keyLengths[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
            BigInteger exp = pubExps[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
            System.out.println("Generating " + len + " bit keypair...");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
            if (exp == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
                kpg.initialize(len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
                kpg.initialize(new RSAKeyGenParameterSpec(len, exp));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
            KeyPair kp = kpg.generateKeyPair();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
            keyPairs[i] = kp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
            RSAPublicKey publicKey = (RSAPublicKey)kp.getPublic();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
            System.out.println(publicKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
            RSAPrivateCrtKey privateKey = (RSAPrivateCrtKey)kp.getPrivate();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
            if (publicKey.getModulus().equals(privateKey.getModulus()) == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
                throw new Exception("Moduli do not match");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
            if (publicKey.getPublicExponent().equals(privateKey.getPublicExponent()) == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
                throw new Exception("Exponents do not match");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
            int keyLen = publicKey.getModulus().bitLength();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
            if ((keyLen > len) || (keyLen < len - 1)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
                throw new Exception("Incorrect key length: " + keyLen);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
            if (exp != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
                if (exp.equals(publicKey.getPublicExponent()) == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
                    throw new Exception("Incorrect exponent");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
            test(privateKey, publicKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
        testInvalidSignature(keyPairs[0], keyPairs[1]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        testInvalidSignature(keyPairs[0], keyPairs[2]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        long stop = System.currentTimeMillis();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        System.out.println("All tests passed (" + (stop - start) + " ms).");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
}