jdk/test/sun/security/pkcs11/tls/TestPRF.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 6345251
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
 * @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
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
public class TestPRF extends PKCS11Test {
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
        main(new TestPRF());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    public void main(Provider provider) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
        if (provider.getService("KeyGenerator", "SunTlsPrf") == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
            System.out.println("Provider does not support algorithm, skipping");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        InputStream in = new FileInputStream(new File(BASE, "prfdata.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
        byte[] secret = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
        String label = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        byte[] seed = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        int length = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        byte[] output = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        while (true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
            String line = reader.readLine();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
            lineNumber++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
            if (line == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
            if (line.startsWith("prf-") == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
                continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
            String data = line.substring(PREFIX_LENGTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
            if (line.startsWith("prf-secret:")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
                secret = parse(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
            } else if (line.startsWith("prf-label:")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
                label = data;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
            } else if (line.startsWith("prf-seed:")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
                seed = parse(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
            } else if (line.startsWith("prf-length:")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
                length = Integer.parseInt(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
            } else if (line.startsWith("prf-output:")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
                output = parse(data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
                System.out.print(".");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
                n++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
    96
                KeyGenerator kg =
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
    97
                    KeyGenerator.getInstance("SunTlsPrf", provider);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
                SecretKey inKey;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
                if (secret == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
                    inKey = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
                    inKey = new SecretKeySpec(secret, "Generic");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
                }
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   104
                TlsPrfParameterSpec spec =
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   105
                    new TlsPrfParameterSpec(inKey, label, seed, length,
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   106
                        null, -1, -1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
                SecretKey key;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
                    kg.init(spec);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
                    key = kg.generateKey();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
                } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
                    if (secret == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
                        // This fails on Solaris, but since we never call this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
                        // API for this case in JSSE, ignore the failure.
7043
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   115
                        // (SunJSSE uses the CKM_TLS_KEY_AND_MAC_DERIVE
5e2d1edeb2c7 6916074: Add support for TLS 1.2
xuelei
parents: 5506
diff changeset
   116
                        // mechanism)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
                        System.out.print("X");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
                        continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
                    System.out.println();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
                    throw new Exception("Error on line: " + lineNumber, e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
                byte[] enc = key.getEncoded();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
                if (Arrays.equals(output, enc) == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
                    System.out.println();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
                    System.out.println("expected: " + toString(output));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
                    System.out.println("actual:   " + toString(enc));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
                    throw new Exception("mismatch line: " + lineNumber);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
                throw new Exception("Unknown line: " + line);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        if (n == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
            throw new Exception("no tests");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        in.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        System.out.println();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        System.out.println("OK: " + n + " tests");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
}