jdk/src/java.base/share/classes/sun/security/ssl/RSASignature.java
author ascarpino
Wed, 08 Feb 2017 12:08:28 -0800
changeset 43701 fe8c324ba97c
parent 27804 4659e70271c4
permissions -rw-r--r--
8160655: Fix denyAfter and usage types for security properties Reviewed-by: mullan, xuelei
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
23010
6dadb192ad81 8029235: Update copyright year to match last edit in jdk8 jdk repository for 2013
lana
parents: 21278
diff changeset
     2
 * Copyright (c) 1996, 2013, 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
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
package sun.security.ssl;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.security.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * Signature implementation for the SSL/TLS RSA Signature variant with both
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * MD5 and SHA-1 MessageDigests. Used for explicit RSA server authentication
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * (RSA signed server key exchange for RSA_EXPORT and DHE_RSA) and RSA client
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * authentication (RSA signed certificate verify message).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * It conforms to the standard JCA Signature API. It is registered in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * SunJSSE provider to avoid more complicated getInstance() code and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * negative interaction with the JCA mechanisms for hardware providers.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * The class should be instantiated via the getInstance() method in this class,
21278
ef8a3a2a72f2 8022746: List of spelling errors in API doc
malenkov
parents: 14664
diff changeset
    42
 * which returns the implementation from the preferred provider. The internal
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * implementation allows the hashes to be explicitly set, which is required
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * for RSA client authentication. It can be obtained via the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * getInternalInstance() method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * This class is not thread safe.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
public final class RSASignature extends SignatureSpi {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    private final Signature rawRsa;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    private MessageDigest md5, sha;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    // flag indicating if the MessageDigests are in reset state
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    private boolean isReset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    public RSASignature() throws NoSuchAlgorithmException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        super();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
        rawRsa = JsseJce.getSignature(JsseJce.SIGNATURE_RAWRSA);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
        isReset = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     * Get an implementation for the RSA signature. Follows the standard
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     * JCA getInstance() model, so it return the implementation from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     * provider with the highest precedence, which may be this class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    static Signature getInstance() throws NoSuchAlgorithmException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        return JsseJce.getSignature(JsseJce.SIGNATURE_SSLRSA);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     * Get an internal implementation for the RSA signature. Used for RSA
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     * client authentication, which needs the ability to set the digests
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
     * to externally provided values via the setHashes() method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    static Signature getInternalInstance()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
            throws NoSuchAlgorithmException, NoSuchProviderException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        return Signature.getInstance(JsseJce.SIGNATURE_SSLRSA, "SunJSSE");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * Set the MD5 and SHA hashes to the provided objects.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     */
27804
4659e70271c4 8066617: Suppress deprecation warnings in java.base module
darcy
parents: 25859
diff changeset
    86
    @SuppressWarnings("deprecation")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    static void setHashes(Signature sig, MessageDigest md5, MessageDigest sha) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        sig.setParameter("hashes", new MessageDigest[] {md5, sha});
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     * Reset the MessageDigests unless they are already reset.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    private void reset() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        if (isReset == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
            md5.reset();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
            sha.reset();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
            isReset = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    private static void checkNull(Key key) throws InvalidKeyException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        if (key == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
            throw new InvalidKeyException("Key must not be null");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 5506
diff changeset
   108
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    protected void engineInitVerify(PublicKey publicKey)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
            throws InvalidKeyException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        checkNull(publicKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        reset();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        rawRsa.initVerify(publicKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 5506
diff changeset
   116
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    protected void engineInitSign(PrivateKey privateKey)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
            throws InvalidKeyException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        engineInitSign(privateKey, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 5506
diff changeset
   122
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    protected void engineInitSign(PrivateKey privateKey, SecureRandom random)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
            throws InvalidKeyException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        checkNull(privateKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        reset();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        rawRsa.initSign(privateKey, random);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    // lazily initialize the MessageDigests
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    private void initDigests() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        if (md5 == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
            md5 = JsseJce.getMD5();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
            sha = JsseJce.getSHA();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 5506
diff changeset
   138
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    protected void engineUpdate(byte b) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        initDigests();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        isReset = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        md5.update(b);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        sha.update(b);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 5506
diff changeset
   146
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
    protected void engineUpdate(byte[] b, int off, int len) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        initDigests();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        isReset = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        md5.update(b, off, len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        sha.update(b, off, len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    private byte[] getDigest() throws SignatureException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
            initDigests();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
            byte[] data = new byte[36];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
            md5.digest(data, 0, 16);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
            sha.digest(data, 16, 20);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
            isReset = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
            return data;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
        } catch (DigestException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
            // should never occur
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
            throw new SignatureException(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 5506
diff changeset
   168
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    protected byte[] engineSign() throws SignatureException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
        rawRsa.update(getDigest());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
        return rawRsa.sign();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 5506
diff changeset
   174
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
    protected boolean engineVerify(byte[] sigBytes) throws SignatureException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        return engineVerify(sigBytes, 0, sigBytes.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 5506
diff changeset
   179
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    protected boolean engineVerify(byte[] sigBytes, int offset, int length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
            throws SignatureException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        rawRsa.update(getDigest());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        return rawRsa.verify(sigBytes, offset, length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 5506
diff changeset
   186
    @Override
27804
4659e70271c4 8066617: Suppress deprecation warnings in java.base module
darcy
parents: 25859
diff changeset
   187
    @SuppressWarnings("deprecation")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
    protected void engineSetParameter(String param, Object value)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
            throws InvalidParameterException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
        if (param.equals("hashes") == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
            throw new InvalidParameterException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
                ("Parameter not supported: " + param);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        if (value instanceof MessageDigest[] == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
            throw new InvalidParameterException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
                ("value must be MessageDigest[]");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        MessageDigest[] digests = (MessageDigest[])value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        md5 = digests[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
        sha = digests[1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 5506
diff changeset
   203
    @Override
27804
4659e70271c4 8066617: Suppress deprecation warnings in java.base module
darcy
parents: 25859
diff changeset
   204
    @SuppressWarnings("deprecation")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
    protected Object engineGetParameter(String param)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
            throws InvalidParameterException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
        throw new InvalidParameterException("Parameters not supported");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
}