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