jdk/test/sun/security/pkcs11/ec/TestECDSA.java
author asmotrak
Tue, 26 Jan 2016 13:32:07 -0800
changeset 35379 1e8e336ef66b
parent 32138 23830562d3d1
child 40975 680639c9b307
permissions -rw-r--r--
8144539: Update PKCS11 tests to run with security manager Reviewed-by: valeriep, ascarpino
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: 32138
diff changeset
     2
 * Copyright (c) 2006, 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
28974
71fe221460f5 8042967: Add variant of DSA Signature algorithms that do not ASN.1 encode the signature bytes
juh
parents: 19067
diff changeset
    26
 * @bug 6405536 8042967
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * @summary basic test of SHA1withECDSA and NONEwithECDSA signing/verifying
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * @author Andreas Sterbenz
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * @library ..
10328
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    30
 * @library ../../../../java/security/testlibrary
30046
cf2c86e1819e 8078334: Mark regression tests using randomness
darcy
parents: 28974
diff changeset
    31
 * @key randomness
35379
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    32
 * @run main/othervm TestECDSA
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    33
 * @run main/othervm TestECDSA sm policy
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
35379
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    36
import java.security.KeyFactory;
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    37
import java.security.KeyPair;
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    38
import java.security.KeyPairGenerator;
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    39
import java.security.MessageDigest;
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    40
import java.security.PrivateKey;
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    41
import java.security.Provider;
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    42
import java.security.PublicKey;
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    43
import java.security.Signature;
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    44
import java.security.interfaces.ECPublicKey;
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    45
import java.security.spec.PKCS8EncodedKeySpec;
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    46
import java.security.spec.X509EncodedKeySpec;
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    47
import java.util.Random;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
public class TestECDSA extends PKCS11Test {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    // values of the keys we use for the tests
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    // keypair using NIST P-192
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    private final static String pub192 =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
"30:49:30:13:06:07:2a:86:48:ce:3d:02:01:06:08:2a:86:48:ce:3d:03:01:01:03:32:00:04:ee:b4:7f:60:3a:25:6a:0c:3c:86:d9:a0:62:be:f6:11:25:42:0e:19:fa:f3:1a:df:0c:98:b4:f8:b3:8f:f5:c1:82:74:e5:e7:71:d6:f9:d0:26:3b:2d:53:a6:37:fc:ab";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    private final static String priv192 =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
"30:39:02:01:00:30:13:06:07:2a:86:48:ce:3d:02:01:06:08:2a:86:48:ce:3d:03:01:01:04:1f:30:1d:02:01:01:04:18:2c:eb:c2:9e:96:de:df:70:d4:a6:33:43:9b:4c:59:4a:6e:a6:f4:5b:6b:a6:b7:6a";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    // keypair using NIST B-163
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    private final static String pub163 =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
"30:40:30:10:06:07:2a:86:48:ce:3d:02:01:06:05:2b:81:04:00:0f:03:2c:00:04:04:af:bc:e6:a1:d3:1a:74:76:dc:51:d6:8d:39:2f:b6:68:22:b3:0f:78:05:79:f7:5d:65:7d:42:9b:de:51:85:0a:a7:b8:89:79:0a:f2:c7:35:0e";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    private final static String priv163 =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
"30:33:02:01:00:30:10:06:07:2a:86:48:ce:3d:02:01:06:05:2b:81:04:00:0f:04:1c:30:1a:02:01:01:04:15:02:0c:07:60:e6:0a:25:ff:5a:19:c8:35:9d:4b:79:97:06:87:9b:a1:3d";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    // keypair using NIST P-521
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    private final static String pub521 =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
"30:81:9b:30:10:06:07:2a:86:48:ce:3d:02:01:06:05:2b:81:04:00:23:03:81:86:00:04:01:6c:e1:03:96:a4:ad:1e:18:b0:c3:ab:63:e6:6a:f6:e5:33:e8:75:e5:7e:33:ce:fd:3a:48:03:08:5a:32:04:f2:f7:00:46:e5:7e:c3:92:bb:bc:5e:c7:d2:e6:01:f3:17:d9:31:2d:07:fc:a1:93:57:28:b8:3a:7f:46:00:f9:bc:b2:01:35:45:9f:3f:0c:bf:6f:3e:29:a7:92:be:c0:83:c0:90:1c:fe:3c:2f:fd:2e:d6:12:0d:45:d3:d3:19:c2:5a:5b:26:37:2d:8e:ba:1c:9e:fb:3a:b6:02:7a:1c:45:ec:72:c8:4b:7d:1f:65:11:78:43:8f:70:92:27:24:ba:c4:af:e5";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    private final static String priv521 =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
"30:60:02:01:00:30:10:06:07:2a:86:48:ce:3d:02:01:06:05:2b:81:04:00:23:04:49:30:47:02:01:01:04:42:01:e7:a7:5d:13:f8:4d:5a:5d:64:10:e6:a1:e0:01:a3:b0:92:e0:72:55:f5:87:62:7e:30:f2:b1:f2:a0:1e:ef:30:65:9c:88:16:53:71:2d:05:a3:d8:4d:bc:c9:50:84:2c:d1:b5:9d:6e:84:57:60:ee:46:a1:26:f9:8b:2c:d5:86:4d";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    // keypair using NIST K-571
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    private final static String pub571 =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
"30:81:a7:30:10:06:07:2a:86:48:ce:3d:02:01:06:05:2b:81:04:00:26:03:81:92:00:04:00:93:a7:c3:d7:90:8f:e5:3c:37:5a:8a:88:d9:b0:04:d7:5d:59:7e:83:42:b6:ef:c2:9c:72:56:3c:9f:28:24:7e:46:95:a8:cd:2c:06:67:a3:81:43:e9:1f:61:b4:66:7d:e6:91:ec:89:5c:4d:ed:bc:c0:8b:33:44:64:3f:5b:44:29:42:e8:a6:8a:e9:47:05:44:69:ca:f0:76:81:d5:e9:e1:9b:c1:31:73:53:69:6d:99:1f:05:bd:b7:62:b6:99:cf:73:c5:24:0e:6c:9f:d3:00:f3:21:58:33:be:a1:de:2e:fc:9e:b1:2b:89:4e:bb:e1:75:da:8c:c1:a1:d2:19:52:5b:57:41:83:11:e3:70:61:63:68:6e:b5:c2:91";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    private final static String priv571 =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
"30:65:02:01:00:30:10:06:07:2a:86:48:ce:3d:02:01:06:05:2b:81:04:00:26:04:4e:30:4c:02:01:01:04:47:cb:b0:84:c9:5e:d5:bb:d1:27:6b:8e:36:51:5d:ed:8d:0f:69:f4:b0:34:c2:4f:e8:e5:a5:3a:a9:38:52:ca:b6:b2:c7:04:8b:09:b7:ac:68:11:00:22:7a:d7:4b:11:77:0f:3f:ba:72:e5:8b:a7:4d:82:8e:a7:d9:55:cf:60:9c:23:f4:a7:22:47:b8:3e";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    // data for test 1, original and SHA-1 hashed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    private final static byte[] data1Raw = b("0102030405060708090a0b0c0d0e0f10111213");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    private final static byte[] data1SHA = b("00:e2:5f:c9:1c:8f:d6:8c:6a:dc:c6:bd:f0:46:60:5e:a2:cd:8d:ad");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    // valid signatures of data1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    private final static byte[] sig192 = b("30:35:02:19:00:91:ba:19:b2:01:da:ce:77:ed:08:6d:70:77:84:25:46:9f:56:a0:40:9a:04:e6:1b:02:18:14:7e:cd:a5:8a:3b:25:e9:f8:c3:20:9b:a9:90:5a:ca:91:5d:60:5e:a8:2f:3e:a4");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    private final static byte[] sig163 = b("30:2d:02:15:02:8d:aa:95:06:f4:4f:fa:44:59:ec:4b:cb:86:59:8c:1f:25:36:64:f5:02:14:6b:d1:ea:82:ed:0c:2a:19:a1:c5:fa:d6:05:78:4b:eb:bf:83:d5:fa");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    private final static byte[] sig521 = b("30:81:87:02:42:01:32:a5:be:dd:fb:c3:07:66:01:48:0a:12:dd:ae:e7:4d:cf:c2:69:ba:37:bc:fb:47:f3:5b:0f:9e:80:2c:c4:c4:40:6f:82:a1:25:39:65:4f:37:9c:b2:59:e0:4c:d6:a2:63:27:b4:fd:fd:ca:72:c8:de:c9:38:8b:02:87:bf:13:d8:02:41:0b:03:0f:3f:f9:cc:93:cb:f5:30:4d:d2:23:f3:cb:3d:b8:ee:8b:76:96:b9:4b:91:2e:b3:8e:26:47:a9:56:89:01:3a:5e:92:79:8f:00:f0:1c:a9:32:f7:70:e2:18:71:35:2c:4d:b7:68:84:2f:56:49:86:eb:96:5d:82:31:a2:de");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    private final static byte[] sig571 = b("30:81:94:02:48:01:4b:81:77:93:cf:bc:98:26:4c:0d:e2:18:f0:d5:b0:bd:b0:a4:a3:b3:8e:1d:3f:7b:21:5d:65:08:42:f7:e6:7e:87:a0:a9:62:9a:79:b0:9d:d6:d6:f0:10:3b:7c:54:aa:cd:f0:d0:5e:5b:f8:f4:36:ec:64:cf:b4:e0:4e:03:db:12:96:e2:25:0c:3b:01:02:48:01:0d:9e:1d:3b:bf:7d:c6:e1:ea:54:92:c4:6b:95:bb:5b:c9:2b:ea:f2:e6:bf:8d:b2:4f:c4:0e:12:f9:35:70:a3:ed:49:f1:11:97:07:a0:05:16:f0:f5:01:8d:15:53:4d:df:51:a0:cf:bc:f0:9f:01:99:e5:2e:e4:9d:02:05:0e:7f:fa:b5:c3:20:eb:5e");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    // data for test 2 (invalid signatures)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    private final static byte[] data2Raw = {};
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    private final static byte[] data2SHA = b("da:39:a3:ee:5e:6b:4b:0d:32:55:bf:ef:95:60:18:90:af:d8:07:09");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
35379
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    91
    private static void verify(Provider provider, String alg, PublicKey key,
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
    92
            byte[] data, byte[] sig, boolean result) throws Exception {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        Signature s = Signature.getInstance(alg, provider);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        s.initVerify(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        boolean r;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        s.update(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        r = s.verify(sig);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        if (r != result) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
            throw new Exception("Result mismatch, actual: " + r);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
        s.update(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        r = s.verify(sig);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        if (r != result) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
            throw new Exception("Result mismatch, actual: " + r);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        System.out.println("Passed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    private static void sign(Provider provider, String alg, PrivateKey key, byte[] data) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        Signature s = Signature.getInstance(alg, provider);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        s.initSign(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        s.update(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        byte[] sig = s.sign();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
        System.out.println(toString(sig));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    public static void main(String[] args) throws Exception {
35379
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
   118
        main(new TestECDSA(), args);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
35379
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
   121
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    public void main(Provider provider) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
        long start = System.currentTimeMillis();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        if (provider.getService("Signature", "SHA1withECDSA") == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
            System.out.println("ECDSA not supported, skipping");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
        }
13661
7c894680910a 6995421: Eliminate the static dependency to sun.security.ec.ECKeyFactory
mullan
parents: 10328
diff changeset
   129
35379
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
   130
        if (isBadNSSVersion(provider)) {
19067
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 14784
diff changeset
   131
            return;
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 14784
diff changeset
   132
        }
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 14784
diff changeset
   133
35379
1e8e336ef66b 8144539: Update PKCS11 tests to run with security manager
asmotrak
parents: 32138
diff changeset
   134
        if (isBadSolarisSparc(provider)) {
32138
23830562d3d1 8133318: Exclude intermittent failing PKCS11 tests on Solaris SPARC 11.1 and earlier
vinnie
parents: 30046
diff changeset
   135
            return;
23830562d3d1 8133318: Exclude intermittent failing PKCS11 tests on Solaris SPARC 11.1 and earlier
vinnie
parents: 30046
diff changeset
   136
        }
23830562d3d1 8133318: Exclude intermittent failing PKCS11 tests on Solaris SPARC 11.1 and earlier
vinnie
parents: 30046
diff changeset
   137
23830562d3d1 8133318: Exclude intermittent failing PKCS11 tests on Solaris SPARC 11.1 and earlier
vinnie
parents: 30046
diff changeset
   138
        /*
13661
7c894680910a 6995421: Eliminate the static dependency to sun.security.ec.ECKeyFactory
mullan
parents: 10328
diff changeset
   139
         * PKCS11Test.main will remove this provider if needed
7c894680910a 6995421: Eliminate the static dependency to sun.security.ec.ECKeyFactory
mullan
parents: 10328
diff changeset
   140
         */
10328
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
   141
        Providers.setAt(provider, 1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        if (false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
            KeyPairGenerator kpg = KeyPairGenerator.getInstance("EC", provider);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
            kpg.initialize(571);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
            KeyPair kp = kpg.generateKeyPair();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
            PrivateKey priv = kp.getPrivate();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
            ECPublicKey pub = (ECPublicKey)kp.getPublic();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
            System.out.println("Keys for " + pub.getParams());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
            System.out.println("public key:");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
            System.out.println(toString(pub.getEncoded()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
            System.out.println("private key:");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
            System.out.println(toString(priv.getEncoded()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
19067
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 14784
diff changeset
   157
        if (getNSSECC() != ECCState.Basic) {
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 14784
diff changeset
   158
            test(provider, pub192, priv192, sig192);
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 14784
diff changeset
   159
            test(provider, pub163, priv163, sig163);
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 14784
diff changeset
   160
            test(provider, pub571, priv571, sig571);
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 14784
diff changeset
   161
        } else {
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 14784
diff changeset
   162
            System.out.println("ECC Basic only, skipping 192, 163 and 571.");
5271291b7121 8020424: The NSS version should be detected before running crypto tests
ascarpino
parents: 14784
diff changeset
   163
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
        test(provider, pub521, priv521, sig521);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
        long stop = System.currentTimeMillis();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
        System.out.println("All tests passed (" + (stop - start) + " ms).");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    private void test(Provider provider, String pub, String priv, byte[] sig) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
        KeyFactory kf = KeyFactory.getInstance("EC", provider);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
        X509EncodedKeySpec pubSpec = new X509EncodedKeySpec(parse(pub));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        PKCS8EncodedKeySpec privSpec = new PKCS8EncodedKeySpec(parse(priv));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        PrivateKey privateKey = kf.generatePrivate(privSpec);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        PublicKey publicKey = kf.generatePublic(pubSpec);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        if (false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
            sign(provider, "SHA1withECDSA", privateKey, data1Raw);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
//          sign(provider, "NONEwithECDSA", privateKey, data1SHA);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        // verify known-good and known-bad signatures using SHA1withECDSA and NONEwithECDSA
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
        verify(provider, "SHA1withECDSA", publicKey, data1Raw, sig, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
        verify(provider, "SHA1withECDSA", publicKey, data2Raw, sig, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
        verify(provider, "NONEwithECDSA", publicKey, data1SHA, sig, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
        verify(provider, "NONEwithECDSA", publicKey, data2SHA, sig, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
28974
71fe221460f5 8042967: Add variant of DSA Signature algorithms that do not ASN.1 encode the signature bytes
juh
parents: 19067
diff changeset
   192
        System.out.println("Testing with default signature format: ASN.1");
71fe221460f5 8042967: Add variant of DSA Signature algorithms that do not ASN.1 encode the signature bytes
juh
parents: 19067
diff changeset
   193
        testSigning(provider, privateKey, publicKey, false);
71fe221460f5 8042967: Add variant of DSA Signature algorithms that do not ASN.1 encode the signature bytes
juh
parents: 19067
diff changeset
   194
71fe221460f5 8042967: Add variant of DSA Signature algorithms that do not ASN.1 encode the signature bytes
juh
parents: 19067
diff changeset
   195
        System.out.println("Testing with IEEE P1363 signature format");
71fe221460f5 8042967: Add variant of DSA Signature algorithms that do not ASN.1 encode the signature bytes
juh
parents: 19067
diff changeset
   196
        testSigning(provider, privateKey, publicKey, true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
28974
71fe221460f5 8042967: Add variant of DSA Signature algorithms that do not ASN.1 encode the signature bytes
juh
parents: 19067
diff changeset
   199
    private void testSigning(Provider provider,
71fe221460f5 8042967: Add variant of DSA Signature algorithms that do not ASN.1 encode the signature bytes
juh
parents: 19067
diff changeset
   200
                             PrivateKey privateKey,
71fe221460f5 8042967: Add variant of DSA Signature algorithms that do not ASN.1 encode the signature bytes
juh
parents: 19067
diff changeset
   201
                             PublicKey publicKey,
71fe221460f5 8042967: Add variant of DSA Signature algorithms that do not ASN.1 encode the signature bytes
juh
parents: 19067
diff changeset
   202
                             boolean p1363Format) throws Exception {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        byte[] data = new byte[2048];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
        new Random().nextBytes(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
        // sign random data using SHA1withECDSA and verify using
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
        // SHA1withECDSA and NONEwithECDSA
28974
71fe221460f5 8042967: Add variant of DSA Signature algorithms that do not ASN.1 encode the signature bytes
juh
parents: 19067
diff changeset
   208
        Signature s;
71fe221460f5 8042967: Add variant of DSA Signature algorithms that do not ASN.1 encode the signature bytes
juh
parents: 19067
diff changeset
   209
        if (p1363Format) {
71fe221460f5 8042967: Add variant of DSA Signature algorithms that do not ASN.1 encode the signature bytes
juh
parents: 19067
diff changeset
   210
            s = Signature.getInstance("SHA1withECDSAinP1363Format", provider);
71fe221460f5 8042967: Add variant of DSA Signature algorithms that do not ASN.1 encode the signature bytes
juh
parents: 19067
diff changeset
   211
        } else {
71fe221460f5 8042967: Add variant of DSA Signature algorithms that do not ASN.1 encode the signature bytes
juh
parents: 19067
diff changeset
   212
            s = Signature.getInstance("SHA1withECDSA", provider);
71fe221460f5 8042967: Add variant of DSA Signature algorithms that do not ASN.1 encode the signature bytes
juh
parents: 19067
diff changeset
   213
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
        s.initSign(privateKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
        s.update(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        byte[] s1 = s.sign();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
        s.initVerify(publicKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
        s.update(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
        if (!s.verify(s1)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
            throw new Exception("Sign/verify 1 failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
28974
71fe221460f5 8042967: Add variant of DSA Signature algorithms that do not ASN.1 encode the signature bytes
juh
parents: 19067
diff changeset
   224
        if (p1363Format) {
71fe221460f5 8042967: Add variant of DSA Signature algorithms that do not ASN.1 encode the signature bytes
juh
parents: 19067
diff changeset
   225
            s = Signature.getInstance("NONEwithECDSAinP1363Format", provider);
71fe221460f5 8042967: Add variant of DSA Signature algorithms that do not ASN.1 encode the signature bytes
juh
parents: 19067
diff changeset
   226
        } else {
71fe221460f5 8042967: Add variant of DSA Signature algorithms that do not ASN.1 encode the signature bytes
juh
parents: 19067
diff changeset
   227
            s = Signature.getInstance("NONEwithECDSA", provider);
71fe221460f5 8042967: Add variant of DSA Signature algorithms that do not ASN.1 encode the signature bytes
juh
parents: 19067
diff changeset
   228
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
        MessageDigest md = MessageDigest.getInstance("SHA-1");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
        byte[] digest = md.digest(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
        s.initVerify(publicKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        s.update(digest);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
        if (!s.verify(s1)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
            throw new Exception("Sign/verify 2 failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
        // sign random data using NONEwithECDSA and verify using
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
        // SHA1withECDSA and NONEwithECDSA
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        s.initSign(privateKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
        s.update(digest);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
        byte[] s2 = s.sign();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
        s.initVerify(publicKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
        s.update(digest);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
        if (!s.verify(s2)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
            throw new Exception("Sign/verify 3 failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
28974
71fe221460f5 8042967: Add variant of DSA Signature algorithms that do not ASN.1 encode the signature bytes
juh
parents: 19067
diff changeset
   249
        if (p1363Format) {
71fe221460f5 8042967: Add variant of DSA Signature algorithms that do not ASN.1 encode the signature bytes
juh
parents: 19067
diff changeset
   250
            s = Signature.getInstance("SHA1withECDSAinP1363Format", provider);
71fe221460f5 8042967: Add variant of DSA Signature algorithms that do not ASN.1 encode the signature bytes
juh
parents: 19067
diff changeset
   251
        } else {
71fe221460f5 8042967: Add variant of DSA Signature algorithms that do not ASN.1 encode the signature bytes
juh
parents: 19067
diff changeset
   252
            s = Signature.getInstance("SHA1withECDSA", provider);
71fe221460f5 8042967: Add variant of DSA Signature algorithms that do not ASN.1 encode the signature bytes
juh
parents: 19067
diff changeset
   253
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
        s.initVerify(publicKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
        s.update(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
        if (!s.verify(s2)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
            throw new Exception("Sign/verify 4 failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
        // XXX session release bug in P11Signature
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
        // test behavior if data of incorrect length is passed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
        s = Signature.getInstance("NONEwithECDSA", provider);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
        s.initSign(privateKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
        s.update(new byte[8]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
        s.update(new byte[640]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
            s.sign();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
            throw new Exception("No error NONEwithECDSA signing long data");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        } catch (SignatureException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
            System.out.println("OK: " + e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
        System.out.println("sign/verify test ok");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
/**/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
    private static byte[] b(String s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
        return parse(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
}