test/jdk/sun/security/pkcs11/KeyPairGenerator/TestDH2048.java
author erikj
Tue, 12 Sep 2017 19:03:39 +0200
changeset 47216 71c04702a3d5
parent 43248 jdk/test/sun/security/pkcs11/KeyPairGenerator/TestDH2048.java@5e15de85a1a0
child 51460 97e361fe3433
permissions -rw-r--r--
8187443: Forest Consolidation: Move files to unified layout Reviewed-by: darcy, ihse
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
20751
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
     1
/*
43248
5e15de85a1a0 8172527: Rename jdk.crypto.token to jdk.crypto.cryptoki
ascarpino
parents: 42693
diff changeset
     2
 * Copyright (c) 2013, 2017, Oracle and/or its affiliates. All rights reserved.
20751
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
     4
 *
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
     7
 * published by the Free Software Foundation.
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
     8
 *
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    13
 * accompanied this code).
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    14
 *
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    18
 *
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    21
 * questions.
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    22
 */
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    23
40975
680639c9b307 8165689: Fix module dependencies for sun/security/pkcs11/* tests
skovalev
parents: 37361
diff changeset
    24
/*
20751
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    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
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    28
 * @author Valerie Peng
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    29
 * @library ..
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
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    33
 */
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    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
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    39
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    40
public class TestDH2048 extends PKCS11Test {
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    41
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    42
    private static void checkUnsupportedKeySize(KeyPairGenerator kpg, int ks)
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    43
        throws Exception {
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    44
        try {
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    45
            kpg.initialize(ks);
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    46
            throw new Exception("Expected IPE not thrown for " + ks);
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    47
        } catch (InvalidParameterException ipe) {
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    48
        }
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    49
    }
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    50
35379
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 20751
diff changeset
    51
    @Override
20751
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    52
    public void main(Provider p) throws Exception {
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    53
        if (p.getService("KeyPairGenerator", "DH") == null) {
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    54
            System.out.println("KPG for DH not supported, skipping");
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    55
            return;
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    56
        }
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    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
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    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
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    97
    }
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    98
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
    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
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
   101
    }
56898cefcda9 7196382: PKCS11 provider should support 2048-bit DH
valeriep
parents:
diff changeset
   102
}