src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/P11TlsMasterSecretGenerator.java
author mbalao
Wed, 12 Sep 2018 13:09:51 +0200
changeset 51800 bccd9966f1ed
parent 47216 71c04702a3d5
child 53257 5170dc2bcf64
permissions -rw-r--r--
8029661: Support TLS v1.2 algorithm in SunPKCS11 provider Summary: TLS v1.2 algorithms for key and MAC derivation added to SunPKCS11 crypto provider. Reviewed-by: valeriep
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
51800
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
     2
 * Copyright (c) 2005, 2018, 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
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package sun.security.pkcs11;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.security.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.security.spec.AlgorithmParameterSpec;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import javax.crypto.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import sun.security.internal.spec.TlsMasterSecretParameterSpec;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import static sun.security.pkcs11.TemplateManager.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import sun.security.pkcs11.wrapper.*;
51800
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
    36
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import static sun.security.pkcs11.wrapper.PKCS11Constants.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * KeyGenerator for the SSL/TLS master secret.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * @author  Andreas Sterbenz
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * @since   1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
public final class P11TlsMasterSecretGenerator extends KeyGeneratorSpi {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    private final static String MSG = "TlsMasterSecretGenerator must be "
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
        + "initialized using a TlsMasterSecretParameterSpec";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    // token instance
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    private final Token token;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    // algorithm name
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    private final String algorithm;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    // mechanism id
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    private long mechanism;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
51800
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
    59
    private int tlsVersion;
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
    60
27936
ca9ee8e3d527 8066638: Suppress deprecation warnings in jdk.crypto module
darcy
parents: 25859
diff changeset
    61
    @SuppressWarnings("deprecation")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    private TlsMasterSecretParameterSpec spec;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    private P11Key p11Key;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
41123
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
    65
    CK_VERSION ckVersion;
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
    66
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
    67
    // whether SSLv3 is supported
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
    68
    private final boolean supportSSLv3;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    P11TlsMasterSecretGenerator(Token token, String algorithm, long mechanism)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
            throws PKCS11Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
        super();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
        this.token = token;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        this.algorithm = algorithm;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        this.mechanism = mechanism;
41123
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
    76
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
    77
        // Given the current lookup order specified in SunPKCS11.java, if
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
    78
        // CKM_SSL3_MASTER_KEY_DERIVE is not used to construct this object,
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
    79
        // it means that this mech is disabled or unsupported.
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
    80
        supportSSLv3 = (mechanism == CKM_SSL3_MASTER_KEY_DERIVE);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    protected void engineInit(SecureRandom random) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        throw new InvalidParameterException(MSG);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
27936
ca9ee8e3d527 8066638: Suppress deprecation warnings in jdk.crypto module
darcy
parents: 25859
diff changeset
    87
    @SuppressWarnings("deprecation")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    protected void engineInit(AlgorithmParameterSpec params,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
            SecureRandom random) throws InvalidAlgorithmParameterException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        if (params instanceof TlsMasterSecretParameterSpec == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
            throw new InvalidAlgorithmParameterException(MSG);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        }
41123
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
    93
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
    94
        TlsMasterSecretParameterSpec spec = (TlsMasterSecretParameterSpec)params;
51800
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
    95
        tlsVersion = (spec.getMajorVersion() << 8) | spec.getMinorVersion();
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
    96
        if ((tlsVersion == 0x0300 && !supportSSLv3) ||
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
    97
                (tlsVersion < 0x0300) || (tlsVersion > 0x0303)) {
41123
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
    98
             throw new InvalidAlgorithmParameterException
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
    99
                    ("Only" + (supportSSLv3? " SSL 3.0,": "") +
51800
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
   100
                     " TLS 1.0, TLS 1.1 and TLS 1.2 are supported (" +
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
   101
                     tlsVersion + ")");
41123
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
   102
        }
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
   103
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        SecretKey key = spec.getPremasterSecret();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        // algorithm should be either TlsRsaPremasterSecret or TlsPremasterSecret,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        // but we omit the check
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
            p11Key = P11SecretKeyFactory.convertKey(token, key, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        } catch (InvalidKeyException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
            throw new InvalidAlgorithmParameterException("init() failed", e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        }
41123
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
   112
        this.spec = spec;
51800
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
   113
        final boolean isTlsRsaPremasterSecret =
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
   114
                p11Key.getAlgorithm().equals("TlsRsaPremasterSecret");
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
   115
        if (tlsVersion == 0x0300) {
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
   116
            mechanism = isTlsRsaPremasterSecret ?
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
   117
                    CKM_SSL3_MASTER_KEY_DERIVE : CKM_SSL3_MASTER_KEY_DERIVE_DH;
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
   118
        } else if (tlsVersion == 0x0301 || tlsVersion == 0x0302) {
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
   119
            mechanism = isTlsRsaPremasterSecret ?
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
   120
                    CKM_TLS_MASTER_KEY_DERIVE : CKM_TLS_MASTER_KEY_DERIVE_DH;
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
   121
        } else if (tlsVersion == 0x0303) {
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
   122
            mechanism = isTlsRsaPremasterSecret ?
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
   123
                    CKM_TLS12_MASTER_KEY_DERIVE : CKM_TLS12_MASTER_KEY_DERIVE_DH;
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
   124
        }
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
   125
        if (isTlsRsaPremasterSecret) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
            ckVersion = new CK_VERSION(0, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
            // Note: we use DH for all non-RSA premaster secrets. That includes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
            // Kerberos. That should not be a problem because master secret
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
            // calculation is always a straightforward application of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
            // TLS PRF (or the SSL equivalent).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
            // The only thing special about RSA master secret calculation is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
            // that it extracts the version numbers from the premaster secret.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
            ckVersion = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        }
41123
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
   136
    }
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
   137
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
   138
    protected void engineInit(int keysize, SecureRandom random) {
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
   139
        throw new InvalidParameterException(MSG);
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
   140
    }
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
   141
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
   142
    protected SecretKey engineGenerateKey() {
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
   143
        if (spec == null) {
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
   144
            throw new IllegalStateException
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
   145
                ("TlsMasterSecretGenerator must be initialized");
66eaead2a150 8136355: CKM_SSL3_KEY_AND_MAC_DERIVE no longer available by default on Solaris 12
valeriep
parents: 27936
diff changeset
   146
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        byte[] clientRandom = spec.getClientRandom();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        byte[] serverRandom = spec.getServerRandom();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        CK_SSL3_RANDOM_DATA random =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
                new CK_SSL3_RANDOM_DATA(clientRandom, serverRandom);
51800
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
   151
        CK_MECHANISM ckMechanism = null;
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
   152
        if (tlsVersion < 0x0303) {
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
   153
            CK_SSL3_MASTER_KEY_DERIVE_PARAMS params =
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
   154
                    new CK_SSL3_MASTER_KEY_DERIVE_PARAMS(random, ckVersion);
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
   155
            ckMechanism = new CK_MECHANISM(mechanism, params);
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
   156
        } else if (tlsVersion == 0x0303) {
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
   157
            CK_TLS12_MASTER_KEY_DERIVE_PARAMS params =
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
   158
                    new CK_TLS12_MASTER_KEY_DERIVE_PARAMS(random, ckVersion,
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
   159
                            Functions.getHashMechId(spec.getPRFHashAlg()));
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
   160
            ckMechanism = new CK_MECHANISM(mechanism, params);
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
   161
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
        Session session = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
            session = token.getObjSession();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
            CK_ATTRIBUTE[] attributes = token.getAttributes(O_GENERATE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
                CKO_SECRET_KEY, CKK_GENERIC_SECRET, new CK_ATTRIBUTE[0]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
            long keyID = token.p11.C_DeriveKey(session.id(),
51800
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
   168
                    ckMechanism, p11Key.keyID, attributes);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
            int major, minor;
51800
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
   170
            if (ckVersion == null) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
                major = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
                minor = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
            } else {
51800
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
   174
                major = ckVersion.major;
bccd9966f1ed 8029661: Support TLS v1.2 algorithm in SunPKCS11 provider
mbalao
parents: 47216
diff changeset
   175
                minor = ckVersion.minor;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
            SecretKey key = P11Key.masterSecretKey(session, keyID,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
                "TlsMasterSecret", 48 << 3, attributes, major, minor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
            return key;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
            throw new ProviderException("Could not generate key", e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
            token.releaseSession(session);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
}