jdk/test/sun/security/pkcs11/tls/TestMasterSecret.java
author ohair
Tue, 25 May 2010 15:58:33 -0700
changeset 5506 202f599c92aa
parent 2 90ce3da70b43
child 7043 5e2d1edeb2c7
permissions -rw-r--r--
6943119: Rebrand source copyright notices Reviewed-by: darcy, weijun
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     2
 * Copyright (c) 2005, 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
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
                KeyGenerator kg = KeyGenerator.getInstance("SunTlsMasterSecret", provider);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
                SecretKey premasterKey = new SecretKeySpec(premaster, algorithm);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
                TlsMasterSecretParameterSpec spec = new TlsMasterSecretParameterSpec
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
                    (premasterKey, protoMajor, protoMinor, clientRandom, serverRandom);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
                kg.init(spec);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
                TlsMasterSecret key = (TlsMasterSecret)kg.generateKey();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
                byte[] enc = key.getEncoded();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
                if (Arrays.equals(master, enc) == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
                    throw new Exception("mismatch line: " + lineNumber);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
                if ((preMajor != key.getMajorVersion()) || (preMinor != key.getMinorVersion())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
                    throw new Exception("version mismatch line: " + lineNumber);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
                throw new Exception("Unknown line: " + line);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        if (n == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
            throw new Exception("no tests");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        in.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
        System.out.println();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        System.out.println("OK: " + n + " tests");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
}