jdk/src/share/classes/sun/security/ssl/RSASignature.java
author malenkov
Tue, 29 Oct 2013 17:01:06 +0400
changeset 21278 ef8a3a2a72f2
parent 14664 e71aa0962e70
child 23010 6dadb192ad81
permissions -rw-r--r--
8022746: List of spelling errors in API doc Reviewed-by: alexsch, smarks
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     2
 * Copyright (c) 1996, 2007, 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
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    static void setHashes(Signature sig, MessageDigest md5, MessageDigest sha) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        sig.setParameter("hashes", new MessageDigest[] {md5, sha});
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     * Reset the MessageDigests unless they are already reset.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    private void reset() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        if (isReset == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
            md5.reset();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
            sha.reset();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
            isReset = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    private static void checkNull(Key key) throws InvalidKeyException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        if (key == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
            throw new InvalidKeyException("Key must not be null");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 5506
diff changeset
   107
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    protected void engineInitVerify(PublicKey publicKey)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
            throws InvalidKeyException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        checkNull(publicKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        reset();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        rawRsa.initVerify(publicKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 5506
diff changeset
   115
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    protected void engineInitSign(PrivateKey privateKey)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
            throws InvalidKeyException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
        engineInitSign(privateKey, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 5506
diff changeset
   121
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    protected void engineInitSign(PrivateKey privateKey, SecureRandom random)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
            throws InvalidKeyException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        checkNull(privateKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        reset();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        rawRsa.initSign(privateKey, random);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    // lazily initialize the MessageDigests
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    private void initDigests() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        if (md5 == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
            md5 = JsseJce.getMD5();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
            sha = JsseJce.getSHA();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 5506
diff changeset
   137
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    protected void engineUpdate(byte b) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        initDigests();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        isReset = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        md5.update(b);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        sha.update(b);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 5506
diff changeset
   145
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    protected void engineUpdate(byte[] b, int off, int len) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        initDigests();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        isReset = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        md5.update(b, off, len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        sha.update(b, off, len);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    private byte[] getDigest() throws SignatureException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
            initDigests();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
            byte[] data = new byte[36];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
            md5.digest(data, 0, 16);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
            sha.digest(data, 16, 20);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
            isReset = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
            return data;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
        } catch (DigestException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
            // should never occur
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
            throw new SignatureException(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 5506
diff changeset
   167
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    protected byte[] engineSign() throws SignatureException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
        rawRsa.update(getDigest());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
        return rawRsa.sign();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 5506
diff changeset
   173
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
    protected boolean engineVerify(byte[] sigBytes) throws SignatureException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        return engineVerify(sigBytes, 0, sigBytes.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 5506
diff changeset
   178
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
    protected boolean engineVerify(byte[] sigBytes, int offset, int length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
            throws SignatureException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        rawRsa.update(getDigest());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        return rawRsa.verify(sigBytes, offset, length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 5506
diff changeset
   185
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
    protected void engineSetParameter(String param, Object value)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
            throws InvalidParameterException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        if (param.equals("hashes") == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
            throw new InvalidParameterException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
                ("Parameter not supported: " + param);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
        if (value instanceof MessageDigest[] == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
            throw new InvalidParameterException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
                ("value must be MessageDigest[]");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        MessageDigest[] digests = (MessageDigest[])value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        md5 = digests[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        sha = digests[1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 5506
diff changeset
   201
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
    protected Object engineGetParameter(String param)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
            throws InvalidParameterException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
        throw new InvalidParameterException("Parameters not supported");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
}