jdk/test/com/sun/crypto/provider/TLS/TestPRF.java
author mchung
Thu, 28 May 2015 10:54:48 -0700
changeset 30820 0d4717a011d3
parent 7043 5e2d1edeb2c7
permissions -rw-r--r--
8081347: Add @modules to jdk_core tests Reviewed-by: alanb, joehw, lancea Contributed-by: alexander.kulyakhtin@oracle.com, alan.bateman@oracle.com, mandy.chung@oracle.com
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
30820
0d4717a011d3 8081347: Add @modules to jdk_core tests
mchung
parents: 7043
diff changeset
    29
 * @modules java.base/sun.security.internal.spec
2
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
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
public class TestPRF extends Utils {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    private static int PREFIX_LENGTH = "prf-output: ".length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    public static void main(String[] args) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
        Provider provider = Security.getProvider("SunJCE");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
        InputStream in = new FileInputStream(new File(BASE, "prfdata.txt"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
        int n = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
        int lineNumber = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
        byte[] secret = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        String label = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
        byte[] seed = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
        int length = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        byte[] output = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
        while (true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
            String line = reader.readLine();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
            lineNumber++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
            if (line == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
            if (line.startsWith("prf-") == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
                continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
            String data = line.substring(PREFIX_LENGTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
            if (line.startsWith("prf-secret:")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
                secret = parse(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
            } else if (line.startsWith("prf-label:")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
                label = data;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
            } else if (line.startsWith("prf-seed:")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
                seed = parse(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
            } else if (line.startsWith("prf-length:")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
                length = Integer.parseInt(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
            } else if (line.startsWith("prf-output:")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
                output = parse(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
                System.out.print(".");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
                n++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
    89
                KeyGenerator kg =
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
    90
                    KeyGenerator.getInstance("SunTlsPrf", provider);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
                SecretKey inKey;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
                if (secret == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
                    inKey = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
                    inKey = new SecretKeySpec(secret, "Generic");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
                }
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
    97
                TlsPrfParameterSpec spec =
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
    98
                    new TlsPrfParameterSpec(inKey, label, seed, length,
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
    99
                        null, -1, -1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
                kg.init(spec);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
                SecretKey key = kg.generateKey();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
                byte[] enc = key.getEncoded();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
                if (Arrays.equals(output, enc) == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
                    throw new Exception("mismatch line: " + lineNumber);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
                throw new Exception("Unknown line: " + line);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        if (n == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
            throw new Exception("no tests");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        in.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
        System.out.println();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        System.out.println("OK: " + n + " tests");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
}