jdk/test/com/sun/crypto/provider/TLS/TestPRF.java
author xuelei
Mon, 01 Nov 2010 22:02:35 -0700
changeset 7043 5e2d1edeb2c7
parent 5506 202f599c92aa
child 30820 0d4717a011d3
permissions -rw-r--r--
6916074: Add support for TLS 1.2 6985179: To support Server Name Indication extension for JSSE client Summary: Introduces the algorithm constraints to support signature and hash algorithm selection. Includes contributions from wetmore and weijung. Reviewed-by: wetmore, weijun
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 6313661
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * @summary Basic known-answer-test for TlsPrf
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * @author Andreas Sterbenz
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.security.Security;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.security.Provider;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import javax.crypto.KeyGenerator;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import javax.crypto.SecretKey;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import javax.crypto.spec.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import sun.security.internal.spec.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
public class TestPRF extends Utils {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    private static int PREFIX_LENGTH = "prf-output: ".length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    public static void main(String[] args) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
        Provider provider = Security.getProvider("SunJCE");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
        InputStream in = new FileInputStream(new File(BASE, "prfdata.txt"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
        int n = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
        int lineNumber = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
        byte[] secret = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
        String label = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        byte[] seed = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
        int length = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
        byte[] output = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
        while (true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
            String line = reader.readLine();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
            lineNumber++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
            if (line == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
            if (line.startsWith("prf-") == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
                continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
            String data = line.substring(PREFIX_LENGTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
            if (line.startsWith("prf-secret:")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
                secret = parse(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
            } else if (line.startsWith("prf-label:")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
                label = data;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
            } else if (line.startsWith("prf-seed:")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
                seed = parse(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
            } else if (line.startsWith("prf-length:")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
                length = Integer.parseInt(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
            } else if (line.startsWith("prf-output:")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
                output = parse(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
                System.out.print(".");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
                n++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
    88
                KeyGenerator kg =
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
    89
                    KeyGenerator.getInstance("SunTlsPrf", provider);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
                SecretKey inKey;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
                if (secret == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
                    inKey = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
                    inKey = new SecretKeySpec(secret, "Generic");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
                }
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
    96
                TlsPrfParameterSpec spec =
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
    97
                    new TlsPrfParameterSpec(inKey, label, seed, length,
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
    98
                        null, -1, -1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
                kg.init(spec);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
                SecretKey key = kg.generateKey();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
                byte[] enc = key.getEncoded();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
                if (Arrays.equals(output, enc) == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
                    throw new Exception("mismatch line: " + lineNumber);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
                throw new Exception("Unknown line: " + line);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        if (n == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
            throw new Exception("no tests");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        in.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        System.out.println();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
        System.out.println("OK: " + n + " tests");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
}