jdk/test/sun/security/ec/TestEC.java
author xuelei
Fri, 01 Mar 2013 02:34:34 -0800
changeset 16045 9d08c3b9a6a0
parent 13661 7c894680910a
child 16067 36055e4b5305
permissions -rw-r--r--
7030966: Support AEAD CipherSuites Reviewed-by: weijun, wetmore, valeriep
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3492
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
     1
/*
13661
7c894680910a 6995421: Eliminate the static dependency to sun.security.ec.ECKeyFactory
mullan
parents: 10328
diff changeset
     2
 * Copyright (c) 2009, 2012, Oracle and/or its affiliates. All rights reserved.
3492
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
     4
 *
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
     7
 * published by the Free Software Foundation.
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
     8
 *
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    13
 * accompanied this code).
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    14
 *
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    18
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3863
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3863
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3863
diff changeset
    21
 * questions.
3492
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    22
 */
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    23
16045
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 13661
diff changeset
    24
//
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 13661
diff changeset
    25
// SunJSSE does not support dynamic system properties, no way to re-use
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 13661
diff changeset
    26
// system properties in samevm/agentvm mode.
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 13661
diff changeset
    27
//
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 13661
diff changeset
    28
3492
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    29
/**
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    30
 * @test
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    31
 * @bug 6840752
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    32
 * @summary  Provide out-of-the-box support for ECC algorithms
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    33
 * @library ../pkcs11
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    34
 * @library ../pkcs11/ec
3863
8e0f58b1c072 6884175: CR cleanup for 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents: 3636
diff changeset
    35
 * @library ../pkcs11/sslecc
10328
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 8991
diff changeset
    36
 * @library ../../../java/security/testlibrary
3863
8e0f58b1c072 6884175: CR cleanup for 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents: 3636
diff changeset
    37
 * @compile -XDignore.symbol.file TestEC.java
16045
9d08c3b9a6a0 7030966: Support AEAD CipherSuites
xuelei
parents: 13661
diff changeset
    38
 * @run main/othervm TestEC
3492
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    39
 */
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    40
13661
7c894680910a 6995421: Eliminate the static dependency to sun.security.ec.ECKeyFactory
mullan
parents: 10328
diff changeset
    41
import java.security.NoSuchProviderException;
3492
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    42
import java.security.Provider;
10328
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 8991
diff changeset
    43
import java.security.Security;
3492
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    44
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    45
/*
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    46
 * Leverage the collection of EC tests used by PKCS11
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    47
 *
3863
8e0f58b1c072 6884175: CR cleanup for 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents: 3636
diff changeset
    48
 * NOTE: the following 6 files were copied here from the PKCS11 EC Test area
3492
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    49
 *       and must be kept in sync with the originals:
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    50
 *
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    51
 *           ../pkcs11/ec/p12passwords.txt
3863
8e0f58b1c072 6884175: CR cleanup for 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents: 3636
diff changeset
    52
 *           ../pkcs11/ec/certs/sunlabscerts.pem
3492
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    53
 *           ../pkcs11/ec/pkcs12/secp256r1server-secp384r1ca.p12
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    54
 *           ../pkcs11/ec/pkcs12/sect193r1server-rsa1024ca.p12
3863
8e0f58b1c072 6884175: CR cleanup for 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents: 3636
diff changeset
    55
 *           ../pkcs11/sslecc/keystore
8e0f58b1c072 6884175: CR cleanup for 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents: 3636
diff changeset
    56
 *           ../pkcs11/sslecc/truststore
3492
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    57
 */
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    58
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    59
public class TestEC {
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    60
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    61
    public static void main(String[] args) throws Exception {
10328
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 8991
diff changeset
    62
        ProvidersSnapshot snapshot = ProvidersSnapshot.create();
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 8991
diff changeset
    63
        try {
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 8991
diff changeset
    64
            main0(args);
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 8991
diff changeset
    65
        } finally {
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 8991
diff changeset
    66
            snapshot.restore();
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 8991
diff changeset
    67
        }
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 8991
diff changeset
    68
    }
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 8991
diff changeset
    69
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 8991
diff changeset
    70
    public static void main0(String[] args) throws Exception {
13661
7c894680910a 6995421: Eliminate the static dependency to sun.security.ec.ECKeyFactory
mullan
parents: 10328
diff changeset
    71
        Provider p = Security.getProvider("SunEC");
7c894680910a 6995421: Eliminate the static dependency to sun.security.ec.ECKeyFactory
mullan
parents: 10328
diff changeset
    72
7c894680910a 6995421: Eliminate the static dependency to sun.security.ec.ECKeyFactory
mullan
parents: 10328
diff changeset
    73
        if (p == null) {
7c894680910a 6995421: Eliminate the static dependency to sun.security.ec.ECKeyFactory
mullan
parents: 10328
diff changeset
    74
            throw new NoSuchProviderException("Can't get SunEC provider");
7c894680910a 6995421: Eliminate the static dependency to sun.security.ec.ECKeyFactory
mullan
parents: 10328
diff changeset
    75
        }
7c894680910a 6995421: Eliminate the static dependency to sun.security.ec.ECKeyFactory
mullan
parents: 10328
diff changeset
    76
3492
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    77
        System.out.println("Running tests with " + p.getName() +
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    78
            " provider...\n");
3863
8e0f58b1c072 6884175: CR cleanup for 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents: 3636
diff changeset
    79
        long start = System.currentTimeMillis();
3492
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    80
3863
8e0f58b1c072 6884175: CR cleanup for 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents: 3636
diff changeset
    81
        /*
8e0f58b1c072 6884175: CR cleanup for 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents: 3636
diff changeset
    82
         * The entry point used for each test is its instance method
8e0f58b1c072 6884175: CR cleanup for 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents: 3636
diff changeset
    83
         * called main (not its static method called main).
8e0f58b1c072 6884175: CR cleanup for 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents: 3636
diff changeset
    84
         */
3492
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    85
        new TestECDH().main(p);
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    86
        new TestECDSA().main(p);
3636
b80fdcc0b0d5 6872048: bad private keys are generated for 2 specific ECC curves
vinnie
parents: 3492
diff changeset
    87
        new TestCurves().main(p);
3492
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    88
        new TestKeyFactory().main(p);
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    89
        new TestECGenSpec().main(p);
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    90
        new ReadPKCS12().main(p);
3863
8e0f58b1c072 6884175: CR cleanup for 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents: 3636
diff changeset
    91
        new ReadCertificates().main(p);
10328
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 8991
diff changeset
    92
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 8991
diff changeset
    93
        // ClientJSSEServerJSSE fails on Solaris 11 when both SunEC and
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 8991
diff changeset
    94
        // SunPKCS11-Solaris providers are enabled.
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 8991
diff changeset
    95
        // Workaround:
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 8991
diff changeset
    96
        // Security.removeProvider("SunPKCS11-Solaris");
3863
8e0f58b1c072 6884175: CR cleanup for 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents: 3636
diff changeset
    97
        new ClientJSSEServerJSSE().main(p);
3492
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
    98
3863
8e0f58b1c072 6884175: CR cleanup for 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents: 3636
diff changeset
    99
        long stop = System.currentTimeMillis();
3492
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
   100
        System.out.println("\nCompleted tests with " + p.getName() +
3863
8e0f58b1c072 6884175: CR cleanup for 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents: 3636
diff changeset
   101
            " provider (" + ((stop - start) / 1000.0) + " seconds).");
3492
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
   102
    }
e549cea58864 6840752: Provide out-of-the-box support for ECC algorithms
vinnie
parents:
diff changeset
   103
}