jdk/src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/Key.java
author igerasim
Mon, 15 Aug 2016 23:45:32 +0300
changeset 40389 c6df8bba0b71
parent 25859 3317bb8137f4
child 44534 a076dffbc2c1
permissions -rw-r--r--
8163896: Finalizing one key of a KeyPair invalidates the other key Reviewed-by: coffeys, vinnie
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
40389
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
     2
 * Copyright (c) 2005, 2016, 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.mscapi;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
11521
d7698e6c5f51 7106773: 512 bits RSA key cannot work with SHA384 and SHA512
xuelei
parents: 5506
diff changeset
    28
import sun.security.util.Length;
d7698e6c5f51 7106773: 512 bits RSA key cannot work with SHA384 and SHA512
xuelei
parents: 5506
diff changeset
    29
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * The handle for an RSA or DSA key using the Microsoft Crypto API.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * @see RSAPrivateKey
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * @see RSAPublicKey
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * @author  Stanley Man-Kit Ho
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 */
11521
d7698e6c5f51 7106773: 512 bits RSA key cannot work with SHA384 and SHA512
xuelei
parents: 5506
diff changeset
    39
abstract class Key implements java.security.Key, Length
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
{
19832
80fff95a633a 8024501: sun.security.mscapi.Key has no definition of serialVersionUID
xuelei
parents: 11521
diff changeset
    41
    private static final long serialVersionUID = -1088859394025049194L;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
40389
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    43
    static class NativeHandles {
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    44
        long hCryptProv = 0;
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    45
        long hCryptKey = 0;
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    46
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    47
        public NativeHandles(long hCryptProv, long hCryptKey) {
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    48
            this.hCryptProv = hCryptProv;
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    49
            this.hCryptKey = hCryptKey;
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    50
        }
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    51
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    52
        /**
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    53
         * Finalization method
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    54
         */
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    55
        protected void finalize() throws Throwable
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    56
        {
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    57
            try {
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    58
                synchronized(this)
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    59
                {
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    60
                    cleanUp(hCryptProv, hCryptKey);
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    61
                    hCryptProv = 0;
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    62
                    hCryptKey = 0;
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    63
                }
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    64
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    65
            } finally {
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    66
                super.finalize();
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    67
            }
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    68
        }
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    69
    }
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    70
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    71
    protected NativeHandles handles;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    // Key length
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    protected int keyLength = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
     * Construct a Key object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     */
40389
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    79
    protected Key(NativeHandles handles, int keyLength)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    {
40389
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    81
        this.handles = handles;
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    82
        this.keyLength = keyLength;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * Native method to cleanup the key handle.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    private native static void cleanUp(long hCryptProv, long hCryptKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     * Return bit length of the key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     */
11521
d7698e6c5f51 7106773: 512 bits RSA key cannot work with SHA384 and SHA512
xuelei
parents: 5506
diff changeset
    93
    @Override
d7698e6c5f51 7106773: 512 bits RSA key cannot work with SHA384 and SHA512
xuelei
parents: 5506
diff changeset
    94
    public int length()
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        return keyLength;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    }
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
     * Return native HCRYPTKEY handle.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    public long getHCryptKey()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    {
40389
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
   105
        return handles.hCryptKey;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * Return native HCRYPTPROV handle.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    public long getHCryptProvider()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    {
40389
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
   113
        return handles.hCryptProv;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * Returns the standard algorithm name for this key. For
40389
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
   118
     * example, "RSA" would indicate that this key is a RSA key.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * See Appendix A in the <a href=
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * "../../../guide/security/CryptoSpec.html#AppA">
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * Java Cryptography Architecture API Specification &amp; Reference </a>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * for information about standard algorithm names.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     * @return the name of the algorithm associated with this key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    public abstract String getAlgorithm();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * Returns the name of the primary encoding format of this key,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     * or null if this key does not support encoding.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * The primary encoding format is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * named in terms of the appropriate ASN.1 data format, if an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     * ASN.1 specification for this key exists.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     * For example, the name of the ASN.1 data format for public
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     * keys is <I>SubjectPublicKeyInfo</I>, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * defined by the X.509 standard; in this case, the returned format is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * <code>"X.509"</code>. Similarly,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * the name of the ASN.1 data format for private keys is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     * <I>PrivateKeyInfo</I>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * as defined by the PKCS #8 standard; in this case, the returned format is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * <code>"PKCS#8"</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * @return the primary encoding format of the key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    public String getFormat()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * Returns the key in its primary encoding format, or null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     * if this key does not support encoding.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     * @return the encoded key, or null if the key does not support
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     * encoding.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    public byte[] getEncoded()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    protected native static String getContainerName(long hCryptProv);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    protected native static String getKeyType(long hCryptKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
}