jdk/test/sun/security/pkcs11/tls/TestMasterSecret.java
author weijun
Fri, 12 Aug 2011 12:26:31 +0800
changeset 10328 06c93c42bca0
parent 7043 5e2d1edeb2c7
child 30820 0d4717a011d3
permissions -rw-r--r--
7055363: jdk_security3 test target cleanup Reviewed-by: alanb, xuelei
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
     2
 * Copyright (c) 2005, 2010, 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 6316539
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * @summary Known-answer-test for TlsMasterSecret generator
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * @author Andreas Sterbenz
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * @library ..
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.security.Security;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.security.Provider;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import javax.crypto.KeyGenerator;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import javax.crypto.SecretKey;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
import javax.crypto.spec.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
import sun.security.internal.spec.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
import sun.security.internal.interfaces.TlsMasterSecret;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
public class TestMasterSecret extends PKCS11Test {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    private static int PREFIX_LENGTH = "m-premaster:  ".length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    public static void main(String[] args) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
        main(new TestMasterSecret());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    public void main(Provider provider) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
        if (provider.getService("KeyGenerator", "SunTlsMasterSecret") == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
            System.out.println("Not supported by provider, skipping");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        InputStream in = new FileInputStream(new File(BASE, "masterdata.txt"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        int n = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
        int lineNumber = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
        String algorithm = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
        byte[] premaster = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        byte[] clientRandom = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        byte[] serverRandom = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        int protoMajor = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        int protoMinor = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        int preMajor = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        int preMinor = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
        byte[] master = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        while (true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
            String line = reader.readLine();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
            lineNumber++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
            if (line == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
            if (line.startsWith("m-") == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
                continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
            String data = line.substring(PREFIX_LENGTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
            if (line.startsWith("m-algorithm:")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
                algorithm = data;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
            } else if (line.startsWith("m-premaster:")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
                premaster = parse(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
            } else if (line.startsWith("m-crandom:")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
                clientRandom = parse(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
            } else if (line.startsWith("m-srandom:")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
                serverRandom = parse(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
            } else if (line.startsWith("m-protomajor:")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
                protoMajor = Integer.parseInt(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
            } else if (line.startsWith("m-protominor:")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
                protoMinor = Integer.parseInt(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
            } else if (line.startsWith("m-premajor:")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
                preMajor = Integer.parseInt(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
            } else if (line.startsWith("m-preminor:")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
                preMinor = Integer.parseInt(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
            } else if (line.startsWith("m-master:")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
                master = parse(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
                System.out.print(".");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
                n++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   107
                KeyGenerator kg =
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   108
                    KeyGenerator.getInstance("SunTlsMasterSecret", provider);
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   109
                SecretKey premasterKey =
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   110
                    new SecretKeySpec(premaster, algorithm);
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   111
                TlsMasterSecretParameterSpec spec =
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   112
                    new TlsMasterSecretParameterSpec(premasterKey,
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   113
                        protoMajor, protoMinor, clientRandom, serverRandom,
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   114
                        null, -1, -1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
                kg.init(spec);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
                TlsMasterSecret key = (TlsMasterSecret)kg.generateKey();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
                byte[] enc = key.getEncoded();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
                if (Arrays.equals(master, enc) == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
                    throw new Exception("mismatch line: " + lineNumber);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
                }
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   121
                if ((preMajor != key.getMajorVersion()) ||
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   122
                        (preMinor != key.getMinorVersion())) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
                    throw new Exception("version mismatch line: " + lineNumber);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
                throw new Exception("Unknown line: " + line);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        if (n == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
            throw new Exception("no tests");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        in.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        System.out.println();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        System.out.println("OK: " + n + " tests");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
}