src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/CKey.java
author weijun
Thu, 13 Dec 2018 17:28:19 +0800
changeset 53006 4debb3321e65
parent 47216 src/jdk.crypto.mscapi/windows/classes/sun/security/mscapi/Key.java@71c04702a3d5
child 53007 e2798bf6318a
permissions -rw-r--r--
8213009: Refactoring existing SunMSCAPI classes Reviewed-by: valeriep
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
53006
4debb3321e65 8213009: Refactoring existing SunMSCAPI classes
weijun
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.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
53006
4debb3321e65 8213009: Refactoring existing SunMSCAPI classes
weijun
parents: 47216
diff changeset
    30
import java.security.Key;
4debb3321e65 8213009: Refactoring existing SunMSCAPI classes
weijun
parents: 47216
diff changeset
    31
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
/**
53006
4debb3321e65 8213009: Refactoring existing SunMSCAPI classes
weijun
parents: 47216
diff changeset
    33
 * The handle for a key using the Microsoft Crypto API.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 *
53006
4debb3321e65 8213009: Refactoring existing SunMSCAPI classes
weijun
parents: 47216
diff changeset
    35
 * @see CPrivateKey
4debb3321e65 8213009: Refactoring existing SunMSCAPI classes
weijun
parents: 47216
diff changeset
    36
 * @see CPublicKey
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * @author  Stanley Man-Kit Ho
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 */
53006
4debb3321e65 8213009: Refactoring existing SunMSCAPI classes
weijun
parents: 47216
diff changeset
    41
abstract class CKey implements Key, Length {
19832
80fff95a633a 8024501: sun.security.mscapi.Key has no definition of serialVersionUID
xuelei
parents: 11521
diff changeset
    42
    private static final long serialVersionUID = -1088859394025049194L;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
40389
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    44
    static class NativeHandles {
53006
4debb3321e65 8213009: Refactoring existing SunMSCAPI classes
weijun
parents: 47216
diff changeset
    45
40389
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    46
        long hCryptProv = 0;
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    47
        long hCryptKey = 0;
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    48
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    49
        public NativeHandles(long hCryptProv, long hCryptKey) {
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    50
            this.hCryptProv = hCryptProv;
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    51
            this.hCryptKey = hCryptKey;
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
44534
a076dffbc2c1 8165641: Deprecate Object.finalize
rriggs
parents: 40389
diff changeset
    54
        @SuppressWarnings("deprecation")
53006
4debb3321e65 8213009: Refactoring existing SunMSCAPI classes
weijun
parents: 47216
diff changeset
    55
        protected void finalize() throws Throwable {
40389
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    56
            try {
53006
4debb3321e65 8213009: Refactoring existing SunMSCAPI classes
weijun
parents: 47216
diff changeset
    57
                synchronized(this) {
40389
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    58
                    cleanUp(hCryptProv, hCryptKey);
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    59
                    hCryptProv = 0;
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    60
                    hCryptKey = 0;
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    61
                }
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    62
            } finally {
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    63
                super.finalize();
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
        }
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    66
    }
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    67
53006
4debb3321e65 8213009: Refactoring existing SunMSCAPI classes
weijun
parents: 47216
diff changeset
    68
    protected final NativeHandles handles;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
53006
4debb3321e65 8213009: Refactoring existing SunMSCAPI classes
weijun
parents: 47216
diff changeset
    70
    protected final int keyLength;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
53006
4debb3321e65 8213009: Refactoring existing SunMSCAPI classes
weijun
parents: 47216
diff changeset
    72
    protected final String algorithm;
4debb3321e65 8213009: Refactoring existing SunMSCAPI classes
weijun
parents: 47216
diff changeset
    73
4debb3321e65 8213009: Refactoring existing SunMSCAPI classes
weijun
parents: 47216
diff changeset
    74
    protected CKey(String algorithm, long hCryptProv, long hCryptKey, int keyLength) {
4debb3321e65 8213009: Refactoring existing SunMSCAPI classes
weijun
parents: 47216
diff changeset
    75
        this.algorithm = algorithm;
4debb3321e65 8213009: Refactoring existing SunMSCAPI classes
weijun
parents: 47216
diff changeset
    76
        this.handles = new NativeHandles(hCryptProv, hCryptKey);
40389
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    77
        this.keyLength = keyLength;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
53006
4debb3321e65 8213009: Refactoring existing SunMSCAPI classes
weijun
parents: 47216
diff changeset
    80
    // Native method to cleanup the key handle.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    private native static void cleanUp(long hCryptProv, long hCryptKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
11521
d7698e6c5f51 7106773: 512 bits RSA key cannot work with SHA384 and SHA512
xuelei
parents: 5506
diff changeset
    83
    @Override
53006
4debb3321e65 8213009: Refactoring existing SunMSCAPI classes
weijun
parents: 47216
diff changeset
    84
    public int length() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
        return keyLength;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
53006
4debb3321e65 8213009: Refactoring existing SunMSCAPI classes
weijun
parents: 47216
diff changeset
    88
    public long getHCryptKey() {
40389
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    89
        return handles.hCryptKey;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
53006
4debb3321e65 8213009: Refactoring existing SunMSCAPI classes
weijun
parents: 47216
diff changeset
    92
    public long getHCryptProvider() {
40389
c6df8bba0b71 8163896: Finalizing one key of a KeyPair invalidates the other key
igerasim
parents: 25859
diff changeset
    93
        return handles.hCryptProv;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
53006
4debb3321e65 8213009: Refactoring existing SunMSCAPI classes
weijun
parents: 47216
diff changeset
    96
    public String getAlgorithm() {
4debb3321e65 8213009: Refactoring existing SunMSCAPI classes
weijun
parents: 47216
diff changeset
    97
        return algorithm;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    protected native static String getContainerName(long hCryptProv);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    protected native static String getKeyType(long hCryptKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
}