src/java.base/share/classes/com/sun/crypto/provider/DESKey.java
author mbalao
Tue, 12 Nov 2019 00:30:55 -0300
changeset 59158 438337c846fb
parent 57950 4612a3cfb927
permissions -rw-r--r--
8233404: System property to set the number of PBE iterations in JCEKS keystores Reviewed-by: weijun
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
57950
4612a3cfb927 8229999: Apply java.io.Serial annotations to security types in java.base
darcy
parents: 48560
diff changeset
     2
 * Copyright (c) 1997, 2019, 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 com.sun.crypto.provider;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
48560
46e99460e8c9 8172525: Improve key keying case
apetcher
parents: 47216
diff changeset
    28
import java.lang.ref.Reference;
31695
4d10942c9a7b 8074865: General crypto resilience changes
valeriep
parents: 25859
diff changeset
    29
import java.security.MessageDigest;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.security.KeyRep;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.security.InvalidKeyException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import javax.crypto.SecretKey;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import javax.crypto.spec.DESKeySpec;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
46097
22316369c9b0 8184744: Replace finalizer in crypto classes with Cleaner
rriggs
parents: 44534
diff changeset
    35
import jdk.internal.ref.CleanerFactory;
22316369c9b0 8184744: Replace finalizer in crypto classes with Cleaner
rriggs
parents: 44534
diff changeset
    36
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * This class represents a DES key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * @author Jan Luehe
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
final class DESKey implements SecretKey {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
57950
4612a3cfb927 8229999: Apply java.io.Serial annotations to security types in java.base
darcy
parents: 48560
diff changeset
    46
    @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    static final long serialVersionUID = 7724971015953279128L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    private byte[] key;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
     * Uses the first 8 bytes of the given key as the DES key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
     * @param key the buffer with the DES key bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
     * @exception InvalidKeyException if less than 8 bytes are available for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
     * the key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    DESKey(byte[] key) throws InvalidKeyException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
        this(key, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     * Uses the first 8 bytes in <code>key</code>, beginning at
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     * <code>offset</code>, as the DES key
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     * @param key the buffer with the DES key bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     * @param offset the offset in <code>key</code>, where the DES key bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     * start.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
     * @exception InvalidKeyException if less than 8 bytes are available for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     * the key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    DESKey(byte[] key, int offset) throws InvalidKeyException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        if (key == null || key.length - offset < DESKeySpec.DES_KEY_LEN) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
            throw new InvalidKeyException("Wrong key size");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        this.key = new byte[DESKeySpec.DES_KEY_LEN];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
        System.arraycopy(key, offset, this.key, 0, DESKeySpec.DES_KEY_LEN);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        DESKeyGenerator.setParityBit(this.key, 0);
46097
22316369c9b0 8184744: Replace finalizer in crypto classes with Cleaner
rriggs
parents: 44534
diff changeset
    81
22316369c9b0 8184744: Replace finalizer in crypto classes with Cleaner
rriggs
parents: 44534
diff changeset
    82
        // Use the cleaner to zero the key when no longer referenced
22316369c9b0 8184744: Replace finalizer in crypto classes with Cleaner
rriggs
parents: 44534
diff changeset
    83
        final byte[] k = this.key;
22316369c9b0 8184744: Replace finalizer in crypto classes with Cleaner
rriggs
parents: 44534
diff changeset
    84
        CleanerFactory.cleaner().register(this,
22316369c9b0 8184744: Replace finalizer in crypto classes with Cleaner
rriggs
parents: 44534
diff changeset
    85
                () -> java.util.Arrays.fill(k, (byte)0x00));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    public byte[] getEncoded() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        // Return a copy of the key, rather than a reference,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        // so that the key data cannot be modified from outside
48560
46e99460e8c9 8172525: Improve key keying case
apetcher
parents: 47216
diff changeset
    91
46e99460e8c9 8172525: Improve key keying case
apetcher
parents: 47216
diff changeset
    92
        // The key is zeroized by finalize()
46e99460e8c9 8172525: Improve key keying case
apetcher
parents: 47216
diff changeset
    93
        // The reachability fence ensures finalize() isn't called early
46e99460e8c9 8172525: Improve key keying case
apetcher
parents: 47216
diff changeset
    94
        byte[] result = key.clone();
46e99460e8c9 8172525: Improve key keying case
apetcher
parents: 47216
diff changeset
    95
        Reference.reachabilityFence(this);
46e99460e8c9 8172525: Improve key keying case
apetcher
parents: 47216
diff changeset
    96
        return result;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    public String getAlgorithm() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        return "DES";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    public String getFormat() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        return "RAW";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * Calculates a hash code value for the object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * Objects that are equal will also have the same hashcode.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    public int hashCode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        int retval = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        for (int i = 1; i < this.key.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
            retval += this.key[i] * i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        return(retval ^= "des".hashCode());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    public boolean equals(Object obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        if (this == obj)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
        if (!(obj instanceof SecretKey))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        String thatAlg = ((SecretKey)obj).getAlgorithm();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        if (!(thatAlg.equalsIgnoreCase("DES")))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        byte[] thatKey = ((SecretKey)obj).getEncoded();
31695
4d10942c9a7b 8074865: General crypto resilience changes
valeriep
parents: 25859
diff changeset
   131
        boolean ret = MessageDigest.isEqual(this.key, thatKey);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        java.util.Arrays.fill(thatKey, (byte)0x00);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        return ret;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * readObject is called to restore the state of this key from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * a stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     */
57950
4612a3cfb927 8229999: Apply java.io.Serial annotations to security types in java.base
darcy
parents: 48560
diff changeset
   140
    @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    private void readObject(java.io.ObjectInputStream s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
         throws java.io.IOException, ClassNotFoundException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        s.defaultReadObject();
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
   145
        key = key.clone();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * Replace the DES key to be serialized.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * @return the standard KeyRep object to be serialized
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * @throws java.io.ObjectStreamException if a new object representing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     * this DES key could not be created
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     */
57950
4612a3cfb927 8229999: Apply java.io.Serial annotations to security types in java.base
darcy
parents: 48560
diff changeset
   156
    @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    private Object writeReplace() throws java.io.ObjectStreamException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
        return new KeyRep(KeyRep.Type.SECRET,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
                        getAlgorithm(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
                        getFormat(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
                        getEncoded());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
}