src/java.base/share/classes/sun/security/x509/AlgorithmId.java
author weijun
Thu, 13 Dec 2018 11:16:33 +0800
changeset 52996 2457d862a646
parent 51216 e429a304c97d
child 53082 4c539cb11633
permissions -rw-r--r--
8076190: Customizing the generation of a PKCS12 keystore Reviewed-by: mullan
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
50204
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
     2
 * Copyright (c) 1996, 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: 4152
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: 4152
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: 4152
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4152
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4152
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.x509;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.security.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import sun.security.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * This class identifies algorithms, such as cryptographic transforms, each
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * of which may be associated with parameters.  Instances of this base class
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * are used when this runtime environment has no special knowledge of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * algorithm type, and may also be used in other cases.  Equivalence is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * defined according to OID and (where relevant) parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 *
28059
e576535359cc 8067377: My hobby: caning, then then canning, the the can-can
martin
parents: 25859
diff changeset
    42
 * <P>Subclasses may be used, for example when the algorithm ID has
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * associated parameters which some code (e.g. code using public keys) needs
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * to have parsed.  Two examples of such algorithms are Diffie-Hellman key
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * exchange, and the Digital Signature Standard Algorithm (DSS/DSA).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * <P>The OID constants defined in this class correspond to some widely
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * used algorithms, for which conventional string names have been defined.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * This class is not a general repository for OIDs, or for such string names.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * Note that the mappings between algorithm IDs and algorithm names is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * not one-to-one.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * @author David Brownell
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * @author Amit Kapoor
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * @author Hemma Prafullchandra
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
public class AlgorithmId implements Serializable, DerEncoder {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    /** use serialVersionUID from JDK 1.1. for interoperability */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    private static final long serialVersionUID = 7205873507486557157L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     * The object identitifer being used for this algorithm.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    private ObjectIdentifier algid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    // The (parsed) parameters
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    private AlgorithmParameters algParams;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    private boolean constructedFromDer = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     * Parameters for this algorithm.  These are stored in unparsed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     * DER-encoded form; subclasses can be made to automaticaly parse
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     * them so there is fast access to these parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    protected DerValue          params;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     * Constructs an algorithm ID which will be initialized
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     * separately, for example by deserialization.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     * @deprecated use one of the other constructors.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    public AlgorithmId() { }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     * Constructs a parameterless algorithm ID.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     * @param oid the identifier for the algorithm
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    public AlgorithmId(ObjectIdentifier oid) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        algid = oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * Constructs an algorithm ID with algorithm parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * @param oid the identifier for the algorithm.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     * @param algparams the associated algorithm parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    public AlgorithmId(ObjectIdentifier oid, AlgorithmParameters algparams) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        algid = oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        algParams = algparams;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        constructedFromDer = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    private AlgorithmId(ObjectIdentifier oid, DerValue params)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
            throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        this.algid = oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        this.params = params;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        if (this.params != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
            decodeParams();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    protected void decodeParams() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        String algidString = algid.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
            algParams = AlgorithmParameters.getInstance(algidString);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
        } catch (NoSuchAlgorithmException e) {
13661
7c894680910a 6995421: Eliminate the static dependency to sun.security.ec.ECKeyFactory
mullan
parents: 13361
diff changeset
   123
            /*
7c894680910a 6995421: Eliminate the static dependency to sun.security.ec.ECKeyFactory
mullan
parents: 13361
diff changeset
   124
             * This algorithm parameter type is not supported, so we cannot
7c894680910a 6995421: Eliminate the static dependency to sun.security.ec.ECKeyFactory
mullan
parents: 13361
diff changeset
   125
             * parse the parameters.
7c894680910a 6995421: Eliminate the static dependency to sun.security.ec.ECKeyFactory
mullan
parents: 13361
diff changeset
   126
             */
7c894680910a 6995421: Eliminate the static dependency to sun.security.ec.ECKeyFactory
mullan
parents: 13361
diff changeset
   127
            algParams = null;
7c894680910a 6995421: Eliminate the static dependency to sun.security.ec.ECKeyFactory
mullan
parents: 13361
diff changeset
   128
            return;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        }
13661
7c894680910a 6995421: Eliminate the static dependency to sun.security.ec.ECKeyFactory
mullan
parents: 13361
diff changeset
   130
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        // Decode (parse) the parameters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        algParams.init(params.toByteArray());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * Marshal a DER-encoded "AlgorithmID" sequence on the DER stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    public final void encode(DerOutputStream out) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        derEncode(out);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * DER encode this object onto an output stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * Implements the <code>DerEncoder</code> interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * @param out
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     * the output stream on which to write the DER encoding.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * @exception IOException on encoding error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
    public void derEncode (OutputStream out) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
        DerOutputStream bytes = new DerOutputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        DerOutputStream tmp = new DerOutputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        bytes.putOID(algid);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
        // Setup params from algParams since no DER encoding is given
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
        if (constructedFromDer == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
            if (algParams != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
                params = new DerValue(algParams.getEncoded());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
                params = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
        if (params == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
            // Changes backed out for compatibility with Solaris
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
            // Several AlgorithmId should omit the whole parameter part when
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
            // it's NULL. They are ---
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
            // rfc3370 2.1: Implementations SHOULD generate SHA-1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
            // AlgorithmIdentifiers with absent parameters.
12685
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   171
            // rfc3447 C1: When id-sha1, id-sha224, id-sha256, id-sha384 and
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   172
            // id-sha512 are used in an AlgorithmIdentifier the parameters
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   173
            // (which are optional) SHOULD be omitted.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
            // rfc3279 2.3.2: The id-dsa algorithm syntax includes optional
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
            // domain parameters... When omitted, the parameters component
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
            // MUST be omitted entirely
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
            // rfc3370 3.1: When the id-dsa-with-sha1 algorithm identifier
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
            // is used, the AlgorithmIdentifier parameters field MUST be absent.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
            /*if (
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
                algid.equals((Object)SHA_oid) ||
12685
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   181
                algid.equals((Object)SHA224_oid) ||
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
                algid.equals((Object)SHA256_oid) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
                algid.equals((Object)SHA384_oid) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
                algid.equals((Object)SHA512_oid) ||
50204
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   185
                algid.equals((Object)SHA512_224_oid) ||
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   186
                algid.equals((Object)SHA512_256_oid) ||
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
                algid.equals((Object)DSA_oid) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
                algid.equals((Object)sha1WithDSA_oid)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
                ; // no parameter part encoded
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
                bytes.putNull();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
            }*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
            bytes.putNull();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
            bytes.putDerValue(params);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        tmp.write(DerValue.tag_Sequence, bytes);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        out.write(tmp.toByteArray());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     * Returns the DER-encoded X.509 AlgorithmId as a byte array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
    public final byte[] encode() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
        DerOutputStream out = new DerOutputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
        derEncode(out);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
        return out.toByteArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * Returns the ISO OID for this algorithm.  This is usually converted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * to a string and used as part of an algorithm name, for example
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     * "OID.1.3.14.3.2.13" style notation.  Use the <code>getName</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     * call when you do not need to ensure cross-system portability
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     * of algorithm names, or need a user friendly name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
    public final ObjectIdentifier getOID () {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
        return algid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     * Returns a name for the algorithm which may be more intelligible
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     * to humans than the algorithm's OID, but which won't necessarily
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     * be comprehensible on other systems.  For example, this might
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     * return a name such as "MD5withRSA" for a signature algorithm on
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     * some systems.  It also returns names like "OID.1.2.3.4", when
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     * no particular name for the algorithm is known.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
    public String getName() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
        String algName = nameTable.get(algid);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        if (algName != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
            return algName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        }
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 6122
diff changeset
   235
        if ((params != null) && algid.equals((Object)specifiedWithECDSA_oid)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
                AlgorithmId paramsId =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
                        AlgorithmId.parse(new DerValue(getEncodedParams()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
                String paramsName = paramsId.getName();
13361
bda5c2354fc6 7180907: Jarsigner -verify fails if rsa file used sha-256 with authenticated attributes
weijun
parents: 12685
diff changeset
   240
                algName = makeSigAlg(paramsName, "EC");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
            } catch (IOException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
                // ignore
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
        return (algName == null) ? algid.toString() : algName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
    public AlgorithmParameters getParameters() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
        return algParams;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     * Returns the DER encoded parameter, which can then be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     * used to initialize java.security.AlgorithmParamters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
     * @return DER encoded parameters, or null not present.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
    public byte[] getEncodedParams() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
        return (params == null) ? null : params.toByteArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     * Returns true iff the argument indicates the same algorithm
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     * with the same parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
    public boolean equals(AlgorithmId other) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
        boolean paramsEqual =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
          (params == null ? other.params == null : params.equals(other.params));
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 6122
diff changeset
   269
        return (algid.equals((Object)other.algid) && paramsEqual);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     * Compares this AlgorithmID to another.  If algorithm parameters are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     * available, they are compared.  Otherwise, just the object IDs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
     * for the algorithm are compared.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     * @param other preferably an AlgorithmId, else an ObjectIdentifier
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
    public boolean equals(Object other) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
        if (this == other) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
        if (other instanceof AlgorithmId) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
            return equals((AlgorithmId) other);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
        } else if (other instanceof ObjectIdentifier) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
            return equals((ObjectIdentifier) other);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
     * Compares two algorithm IDs for equality.  Returns true iff
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
     * they are the same algorithm, ignoring algorithm parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
    public final boolean equals(ObjectIdentifier id) {
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 6122
diff changeset
   297
        return algid.equals((Object)id);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
     * Returns a hashcode for this AlgorithmId.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
     * @return a hashcode for this AlgorithmId.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
    public int hashCode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
        StringBuilder sbuf = new StringBuilder();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
        sbuf.append(algid.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
        sbuf.append(paramsToString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
        return sbuf.toString().hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     * Provides a human-readable description of the algorithm parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     * This may be redefined by subclasses which parse those parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
    protected String paramsToString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
        if (params == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
            return "";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
        } else if (algParams != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
            return algParams.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
            return ", params unparsed";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     * Returns a string describing the algorithm and its parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
        return getName() + paramsToString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     * Parse (unmarshal) an ID from a DER sequence input value.  This form
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
     * parsing might be used when expanding a value which has already been
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
     * partially unmarshaled as a set or sequence member.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
     * @exception IOException on error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     * @param val the input value, which contains the algid and, if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     *          there are any parameters, those parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     * @return an ID for the algorithm.  If the system is configured
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     *          appropriately, this may be an instance of a class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     *          with some kind of special support for this algorithm.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     *          In that case, you may "narrow" the type of the ID.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
    public static AlgorithmId parse(DerValue val) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
        if (val.tag != DerValue.tag_Sequence) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
            throw new IOException("algid parse error, not a sequence");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
         * Get the algorithm ID and any parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
        ObjectIdentifier        algid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
        DerValue                params;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
        DerInputStream          in = val.toDerInputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
        algid = in.getOID();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
        if (in.available() == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
            params = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
            params = in.getDerValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
            if (params.tag == DerValue.tag_Null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
                if (params.length() != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
                    throw new IOException("invalid NULL");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
                params = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
            if (in.available() != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
                throw new IOException("Invalid AlgorithmIdentifier: extra data");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
        return new AlgorithmId(algid, params);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     * Returns one of the algorithm IDs most commonly associated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     * with this algorithm name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
     * @param algname the name being used
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     * @deprecated use the short get form of this method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
     * @exception NoSuchAlgorithmException on error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
    public static AlgorithmId getAlgorithmId(String algname)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
            throws NoSuchAlgorithmException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
        return get(algname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     * Returns one of the algorithm IDs most commonly associated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     * with this algorithm name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     * @param algname the name being used
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
     * @exception NoSuchAlgorithmException on error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
    public static AlgorithmId get(String algname)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
            throws NoSuchAlgorithmException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
        ObjectIdentifier oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
            oid = algOID(algname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
        } catch (IOException ioe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
            throw new NoSuchAlgorithmException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
                ("Invalid ObjectIdentifier " + algname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
        if (oid == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
            throw new NoSuchAlgorithmException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
                ("unrecognized algorithm name: " + algname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
        return new AlgorithmId(oid);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
     * Returns one of the algorithm IDs most commonly associated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
     * with this algorithm parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
     * @param algparams the associated algorithm parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
     * @exception NoSuchAlgorithmException on error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
    public static AlgorithmId get(AlgorithmParameters algparams)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
            throws NoSuchAlgorithmException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
        ObjectIdentifier oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
        String algname = algparams.getAlgorithm();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
            oid = algOID(algname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
        } catch (IOException ioe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
            throw new NoSuchAlgorithmException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
                ("Invalid ObjectIdentifier " + algname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
        if (oid == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
            throw new NoSuchAlgorithmException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
                ("unrecognized algorithm name: " + algname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
        return new AlgorithmId(oid, algparams);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
     * Translates from some common algorithm names to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     * OID with which they're usually associated ... this mapping
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
     * is the reverse of the one below, except in those cases
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
     * where synonyms are supported or where a given algorithm
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
     * is commonly associated with multiple OIDs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
     * XXX This method needs to be enhanced so that we can also pass the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
     * scope of the algorithm name to it, e.g., the algorithm name "DSA"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
     * may have a different OID when used as a "Signature" algorithm than when
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
     * used as a "KeyPairGenerator" algorithm.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
    private static ObjectIdentifier algOID(String name) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
        // See if algname is in printable OID ("dot-dot") notation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
        if (name.indexOf('.') != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
            if (name.startsWith("OID.")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
                return new ObjectIdentifier(name.substring("OID.".length()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
                return new ObjectIdentifier(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
        // Digesting algorithms
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
        if (name.equalsIgnoreCase("MD5")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
            return AlgorithmId.MD5_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
        if (name.equalsIgnoreCase("MD2")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
            return AlgorithmId.MD2_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
        if (name.equalsIgnoreCase("SHA") || name.equalsIgnoreCase("SHA1")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
            || name.equalsIgnoreCase("SHA-1")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
            return AlgorithmId.SHA_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
        if (name.equalsIgnoreCase("SHA-256") ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
            name.equalsIgnoreCase("SHA256")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
            return AlgorithmId.SHA256_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
        if (name.equalsIgnoreCase("SHA-384") ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
            name.equalsIgnoreCase("SHA384")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
            return AlgorithmId.SHA384_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
        if (name.equalsIgnoreCase("SHA-512") ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
            name.equalsIgnoreCase("SHA512")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
            return AlgorithmId.SHA512_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
        }
12685
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   484
        if (name.equalsIgnoreCase("SHA-224") ||
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   485
            name.equalsIgnoreCase("SHA224")) {
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   486
            return AlgorithmId.SHA224_oid;
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   487
        }
50204
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   488
        if (name.equalsIgnoreCase("SHA-512/224") ||
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   489
            name.equalsIgnoreCase("SHA512/224")) {
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   490
            return AlgorithmId.SHA512_224_oid;
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   491
        }
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   492
        if (name.equalsIgnoreCase("SHA-512/256") ||
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   493
            name.equalsIgnoreCase("SHA512/256")) {
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   494
            return AlgorithmId.SHA512_256_oid;
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   495
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
        // Various public key algorithms
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
        if (name.equalsIgnoreCase("RSA")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
            return AlgorithmId.RSAEncryption_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
        }
50204
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   500
        if (name.equalsIgnoreCase("RSASSA-PSS")) {
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   501
            return AlgorithmId.RSASSA_PSS_oid;
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   502
        }
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   503
        if (name.equalsIgnoreCase("RSAES-OAEP")) {
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   504
            return AlgorithmId.RSAES_OAEP_oid;
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   505
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
        if (name.equalsIgnoreCase("Diffie-Hellman")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
            || name.equalsIgnoreCase("DH")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
            return AlgorithmId.DH_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
        if (name.equalsIgnoreCase("DSA")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
            return AlgorithmId.DSA_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
        if (name.equalsIgnoreCase("EC")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
            return EC_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
        }
13672
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   516
        if (name.equalsIgnoreCase("ECDH")) {
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   517
            return AlgorithmId.ECDH_oid;
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   518
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
15298
06867bfe82ac 8005408: KeyStore API enhancements
vinnie
parents: 13672
diff changeset
   520
        // Secret key algorithms
06867bfe82ac 8005408: KeyStore API enhancements
vinnie
parents: 13672
diff changeset
   521
        if (name.equalsIgnoreCase("AES")) {
06867bfe82ac 8005408: KeyStore API enhancements
vinnie
parents: 13672
diff changeset
   522
            return AlgorithmId.AES_oid;
06867bfe82ac 8005408: KeyStore API enhancements
vinnie
parents: 13672
diff changeset
   523
        }
06867bfe82ac 8005408: KeyStore API enhancements
vinnie
parents: 13672
diff changeset
   524
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
        // Common signature types
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
        if (name.equalsIgnoreCase("MD5withRSA")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
            || name.equalsIgnoreCase("MD5/RSA")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
            return AlgorithmId.md5WithRSAEncryption_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
        if (name.equalsIgnoreCase("MD2withRSA")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
            || name.equalsIgnoreCase("MD2/RSA")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
            return AlgorithmId.md2WithRSAEncryption_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
        if (name.equalsIgnoreCase("SHAwithDSA")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
            || name.equalsIgnoreCase("SHA1withDSA")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
            || name.equalsIgnoreCase("SHA/DSA")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
            || name.equalsIgnoreCase("SHA1/DSA")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
            || name.equalsIgnoreCase("DSAWithSHA1")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
            || name.equalsIgnoreCase("DSS")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
            || name.equalsIgnoreCase("SHA-1/DSA")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
            return AlgorithmId.sha1WithDSA_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
        }
13672
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   543
        if (name.equalsIgnoreCase("SHA224WithDSA")) {
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   544
            return AlgorithmId.sha224WithDSA_oid;
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   545
        }
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   546
        if (name.equalsIgnoreCase("SHA256WithDSA")) {
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   547
            return AlgorithmId.sha256WithDSA_oid;
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   548
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
        if (name.equalsIgnoreCase("SHA1WithRSA")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
            || name.equalsIgnoreCase("SHA1/RSA")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
            return AlgorithmId.sha1WithRSAEncryption_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
        if (name.equalsIgnoreCase("SHA1withECDSA")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
                || name.equalsIgnoreCase("ECDSA")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
            return AlgorithmId.sha1WithECDSA_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
        }
3717
c2ea049a4442 6871847: AlgorithmId.get("SHA256withECDSA") not available
weijun
parents: 2944
diff changeset
   557
        if (name.equalsIgnoreCase("SHA224withECDSA")) {
c2ea049a4442 6871847: AlgorithmId.get("SHA256withECDSA") not available
weijun
parents: 2944
diff changeset
   558
            return AlgorithmId.sha224WithECDSA_oid;
c2ea049a4442 6871847: AlgorithmId.get("SHA256withECDSA") not available
weijun
parents: 2944
diff changeset
   559
        }
c2ea049a4442 6871847: AlgorithmId.get("SHA256withECDSA") not available
weijun
parents: 2944
diff changeset
   560
        if (name.equalsIgnoreCase("SHA256withECDSA")) {
c2ea049a4442 6871847: AlgorithmId.get("SHA256withECDSA") not available
weijun
parents: 2944
diff changeset
   561
            return AlgorithmId.sha256WithECDSA_oid;
c2ea049a4442 6871847: AlgorithmId.get("SHA256withECDSA") not available
weijun
parents: 2944
diff changeset
   562
        }
c2ea049a4442 6871847: AlgorithmId.get("SHA256withECDSA") not available
weijun
parents: 2944
diff changeset
   563
        if (name.equalsIgnoreCase("SHA384withECDSA")) {
c2ea049a4442 6871847: AlgorithmId.get("SHA256withECDSA") not available
weijun
parents: 2944
diff changeset
   564
            return AlgorithmId.sha384WithECDSA_oid;
c2ea049a4442 6871847: AlgorithmId.get("SHA256withECDSA") not available
weijun
parents: 2944
diff changeset
   565
        }
c2ea049a4442 6871847: AlgorithmId.get("SHA256withECDSA") not available
weijun
parents: 2944
diff changeset
   566
        if (name.equalsIgnoreCase("SHA512withECDSA")) {
c2ea049a4442 6871847: AlgorithmId.get("SHA256withECDSA") not available
weijun
parents: 2944
diff changeset
   567
            return AlgorithmId.sha512WithECDSA_oid;
c2ea049a4442 6871847: AlgorithmId.get("SHA256withECDSA") not available
weijun
parents: 2944
diff changeset
   568
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
37908
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   570
        return oidTable().get(name.toUpperCase(Locale.ENGLISH));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
    private static ObjectIdentifier oid(int ... values) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
        return ObjectIdentifier.newInternal(values);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
37908
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   577
    private static volatile Map<String,ObjectIdentifier> oidTable;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
    private static final Map<ObjectIdentifier,String> nameTable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
37908
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   580
    /** Returns the oidTable, lazily initializing it on first access. */
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   581
    private static Map<String,ObjectIdentifier> oidTable()
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   582
        throws IOException {
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   583
        // Double checked locking; safe because oidTable is volatile
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   584
        Map<String,ObjectIdentifier> tab;
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   585
        if ((tab = oidTable) == null) {
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   586
            synchronized (AlgorithmId.class) {
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   587
                if ((tab = oidTable) == null)
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   588
                    oidTable = tab = computeOidTable();
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   589
            }
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   590
        }
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   591
        return tab;
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   592
    }
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   593
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   594
    /** Collects the algorithm names from the installed providers. */
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   595
    private static HashMap<String,ObjectIdentifier> computeOidTable()
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   596
        throws IOException {
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   597
        HashMap<String,ObjectIdentifier> tab = new HashMap<>();
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   598
        for (Provider provider : Security.getProviders()) {
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   599
            for (Object key : provider.keySet()) {
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   600
                String alias = (String)key;
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   601
                String upperCaseAlias = alias.toUpperCase(Locale.ENGLISH);
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   602
                int index;
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   603
                if (upperCaseAlias.startsWith("ALG.ALIAS") &&
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   604
                    (index=upperCaseAlias.indexOf("OID.", 0)) != -1) {
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   605
                    index += "OID.".length();
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   606
                    if (index == alias.length()) {
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   607
                        // invalid alias entry
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   608
                        break;
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   609
                    }
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   610
                    String oidString = alias.substring(index);
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   611
                    String stdAlgName = provider.getProperty(alias);
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   612
                    if (stdAlgName != null) {
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   613
                        stdAlgName = stdAlgName.toUpperCase(Locale.ENGLISH);
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   614
                    }
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   615
                    if (stdAlgName != null &&
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   616
                        tab.get(stdAlgName) == null) {
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   617
                        tab.put(stdAlgName, new ObjectIdentifier(oidString));
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   618
                    }
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   619
                }
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   620
            }
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   621
        }
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   622
        return tab;
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   623
    }
b9bb960b959c 8156584: Initialization race in sun.security.x509.AlgorithmId.get
martin
parents: 35283
diff changeset
   624
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
    /*****************************************************************/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
     * HASHING ALGORITHMS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
     * Algorithm ID for the MD2 Message Digest Algorthm, from RFC 1319.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
     * OID = 1.2.840.113549.2.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
    public static final ObjectIdentifier MD2_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
    ObjectIdentifier.newInternal(new int[] {1, 2, 840, 113549, 2, 2});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
     * Algorithm ID for the MD5 Message Digest Algorthm, from RFC 1321.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
     * OID = 1.2.840.113549.2.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
    public static final ObjectIdentifier MD5_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
    ObjectIdentifier.newInternal(new int[] {1, 2, 840, 113549, 2, 5});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
     * Algorithm ID for the SHA1 Message Digest Algorithm, from FIPS 180-1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
     * This is sometimes called "SHA", though that is often confusing since
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
     * many people refer to FIPS 180 (which has an error) as defining SHA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
     * OID = 1.3.14.3.2.26. Old SHA-0 OID: 1.3.14.3.2.18.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
    public static final ObjectIdentifier SHA_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
    ObjectIdentifier.newInternal(new int[] {1, 3, 14, 3, 2, 26});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
12685
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   654
    public static final ObjectIdentifier SHA224_oid =
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   655
    ObjectIdentifier.newInternal(new int[] {2, 16, 840, 1, 101, 3, 4, 2, 4});
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   656
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
    public static final ObjectIdentifier SHA256_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
    ObjectIdentifier.newInternal(new int[] {2, 16, 840, 1, 101, 3, 4, 2, 1});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
    public static final ObjectIdentifier SHA384_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
    ObjectIdentifier.newInternal(new int[] {2, 16, 840, 1, 101, 3, 4, 2, 2});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
    public static final ObjectIdentifier SHA512_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
    ObjectIdentifier.newInternal(new int[] {2, 16, 840, 1, 101, 3, 4, 2, 3});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
50204
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   666
    public static final ObjectIdentifier SHA512_224_oid =
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   667
    ObjectIdentifier.newInternal(new int[] {2, 16, 840, 1, 101, 3, 4, 2, 5});
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   668
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   669
    public static final ObjectIdentifier SHA512_256_oid =
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   670
    ObjectIdentifier.newInternal(new int[] {2, 16, 840, 1, 101, 3, 4, 2, 6});
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   671
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
     * COMMON PUBLIC KEY TYPES
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
     */
31538
0981099a3e54 8130022: Use Java-style array declarations consistently
igerasim
parents: 30033
diff changeset
   675
    private static final int[] DH_data = { 1, 2, 840, 113549, 1, 3, 1 };
0981099a3e54 8130022: Use Java-style array declarations consistently
igerasim
parents: 30033
diff changeset
   676
    private static final int[] DH_PKIX_data = { 1, 2, 840, 10046, 2, 1 };
0981099a3e54 8130022: Use Java-style array declarations consistently
igerasim
parents: 30033
diff changeset
   677
    private static final int[] DSA_OIW_data = { 1, 3, 14, 3, 2, 12 };
0981099a3e54 8130022: Use Java-style array declarations consistently
igerasim
parents: 30033
diff changeset
   678
    private static final int[] DSA_PKIX_data = { 1, 2, 840, 10040, 4, 1 };
0981099a3e54 8130022: Use Java-style array declarations consistently
igerasim
parents: 30033
diff changeset
   679
    private static final int[] RSA_data = { 2, 5, 8, 1, 1 };
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
    public static final ObjectIdentifier DH_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
    public static final ObjectIdentifier DH_PKIX_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
    public static final ObjectIdentifier DSA_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
    public static final ObjectIdentifier DSA_OIW_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
    public static final ObjectIdentifier EC_oid = oid(1, 2, 840, 10045, 2, 1);
13672
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   686
    public static final ObjectIdentifier ECDH_oid = oid(1, 3, 132, 1, 12);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
    public static final ObjectIdentifier RSA_oid;
50204
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   688
    public static final ObjectIdentifier RSAEncryption_oid =
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   689
                                            oid(1, 2, 840, 113549, 1, 1, 1);
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   690
    public static final ObjectIdentifier RSAES_OAEP_oid =
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   691
                                            oid(1, 2, 840, 113549, 1, 1, 7);
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   692
    public static final ObjectIdentifier RSASSA_PSS_oid =
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   693
                                            oid(1, 2, 840, 113549, 1, 1, 10);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
    /*
15298
06867bfe82ac 8005408: KeyStore API enhancements
vinnie
parents: 13672
diff changeset
   696
     * COMMON SECRET KEY TYPES
06867bfe82ac 8005408: KeyStore API enhancements
vinnie
parents: 13672
diff changeset
   697
     */
06867bfe82ac 8005408: KeyStore API enhancements
vinnie
parents: 13672
diff changeset
   698
    public static final ObjectIdentifier AES_oid =
06867bfe82ac 8005408: KeyStore API enhancements
vinnie
parents: 13672
diff changeset
   699
                                            oid(2, 16, 840, 1, 101, 3, 4, 1);
06867bfe82ac 8005408: KeyStore API enhancements
vinnie
parents: 13672
diff changeset
   700
06867bfe82ac 8005408: KeyStore API enhancements
vinnie
parents: 13672
diff changeset
   701
    /*
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
     * COMMON SIGNATURE ALGORITHMS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
     */
31538
0981099a3e54 8130022: Use Java-style array declarations consistently
igerasim
parents: 30033
diff changeset
   704
    private static final int[] md2WithRSAEncryption_data =
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
                                       { 1, 2, 840, 113549, 1, 1, 2 };
31538
0981099a3e54 8130022: Use Java-style array declarations consistently
igerasim
parents: 30033
diff changeset
   706
    private static final int[] md5WithRSAEncryption_data =
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
                                       { 1, 2, 840, 113549, 1, 1, 4 };
31538
0981099a3e54 8130022: Use Java-style array declarations consistently
igerasim
parents: 30033
diff changeset
   708
    private static final int[] sha1WithRSAEncryption_data =
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
                                       { 1, 2, 840, 113549, 1, 1, 5 };
31538
0981099a3e54 8130022: Use Java-style array declarations consistently
igerasim
parents: 30033
diff changeset
   710
    private static final int[] sha1WithRSAEncryption_OIW_data =
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
                                       { 1, 3, 14, 3, 2, 29 };
31538
0981099a3e54 8130022: Use Java-style array declarations consistently
igerasim
parents: 30033
diff changeset
   712
    private static final int[] sha224WithRSAEncryption_data =
12685
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   713
                                       { 1, 2, 840, 113549, 1, 1, 14 };
31538
0981099a3e54 8130022: Use Java-style array declarations consistently
igerasim
parents: 30033
diff changeset
   714
    private static final int[] sha256WithRSAEncryption_data =
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
                                       { 1, 2, 840, 113549, 1, 1, 11 };
31538
0981099a3e54 8130022: Use Java-style array declarations consistently
igerasim
parents: 30033
diff changeset
   716
    private static final int[] sha384WithRSAEncryption_data =
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
                                       { 1, 2, 840, 113549, 1, 1, 12 };
31538
0981099a3e54 8130022: Use Java-style array declarations consistently
igerasim
parents: 30033
diff changeset
   718
    private static final int[] sha512WithRSAEncryption_data =
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
                                       { 1, 2, 840, 113549, 1, 1, 13 };
50204
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   720
31538
0981099a3e54 8130022: Use Java-style array declarations consistently
igerasim
parents: 30033
diff changeset
   721
    private static final int[] shaWithDSA_OIW_data =
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
                                       { 1, 3, 14, 3, 2, 13 };
31538
0981099a3e54 8130022: Use Java-style array declarations consistently
igerasim
parents: 30033
diff changeset
   723
    private static final int[] sha1WithDSA_OIW_data =
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
                                       { 1, 3, 14, 3, 2, 27 };
31538
0981099a3e54 8130022: Use Java-style array declarations consistently
igerasim
parents: 30033
diff changeset
   725
    private static final int[] dsaWithSHA1_PKIX_data =
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
                                       { 1, 2, 840, 10040, 4, 3 };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
    public static final ObjectIdentifier md2WithRSAEncryption_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
    public static final ObjectIdentifier md5WithRSAEncryption_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
    public static final ObjectIdentifier sha1WithRSAEncryption_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
    public static final ObjectIdentifier sha1WithRSAEncryption_OIW_oid;
12685
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   732
    public static final ObjectIdentifier sha224WithRSAEncryption_oid;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
    public static final ObjectIdentifier sha256WithRSAEncryption_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
    public static final ObjectIdentifier sha384WithRSAEncryption_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
    public static final ObjectIdentifier sha512WithRSAEncryption_oid;
50204
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   736
    public static final ObjectIdentifier sha512_224WithRSAEncryption_oid =
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   737
                                            oid(1, 2, 840, 113549, 1, 1, 15);
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   738
    public static final ObjectIdentifier sha512_256WithRSAEncryption_oid =
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   739
                                            oid(1, 2, 840, 113549, 1, 1, 16);;
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   740
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
    public static final ObjectIdentifier shaWithDSA_OIW_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
    public static final ObjectIdentifier sha1WithDSA_OIW_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
    public static final ObjectIdentifier sha1WithDSA_oid;
13672
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   744
    public static final ObjectIdentifier sha224WithDSA_oid =
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   745
                                            oid(2, 16, 840, 1, 101, 3, 4, 3, 1);
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   746
    public static final ObjectIdentifier sha256WithDSA_oid =
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   747
                                            oid(2, 16, 840, 1, 101, 3, 4, 3, 2);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
    public static final ObjectIdentifier sha1WithECDSA_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
                                            oid(1, 2, 840, 10045, 4, 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
    public static final ObjectIdentifier sha224WithECDSA_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
                                            oid(1, 2, 840, 10045, 4, 3, 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
    public static final ObjectIdentifier sha256WithECDSA_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
                                            oid(1, 2, 840, 10045, 4, 3, 2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
    public static final ObjectIdentifier sha384WithECDSA_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
                                            oid(1, 2, 840, 10045, 4, 3, 3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
    public static final ObjectIdentifier sha512WithECDSA_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
                                            oid(1, 2, 840, 10045, 4, 3, 4);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
    public static final ObjectIdentifier specifiedWithECDSA_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
                                            oid(1, 2, 840, 10045, 4, 3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
     * Algorithm ID for the PBE encryption algorithms from PKCS#5 and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
     * PKCS#12.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
    public static final ObjectIdentifier pbeWithMD5AndDES_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
        ObjectIdentifier.newInternal(new int[]{1, 2, 840, 113549, 1, 5, 3});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
    public static final ObjectIdentifier pbeWithMD5AndRC2_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
        ObjectIdentifier.newInternal(new int[] {1, 2, 840, 113549, 1, 5, 6});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
    public static final ObjectIdentifier pbeWithSHA1AndDES_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
        ObjectIdentifier.newInternal(new int[] {1, 2, 840, 113549, 1, 5, 10});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
    public static final ObjectIdentifier pbeWithSHA1AndRC2_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
        ObjectIdentifier.newInternal(new int[] {1, 2, 840, 113549, 1, 5, 11});
52996
2457d862a646 8076190: Customizing the generation of a PKCS12 keystore
weijun
parents: 51216
diff changeset
   774
    public static ObjectIdentifier pbeWithSHA1AndRC4_128_oid =
2457d862a646 8076190: Customizing the generation of a PKCS12 keystore
weijun
parents: 51216
diff changeset
   775
        ObjectIdentifier.newInternal(new int[] {1, 2, 840, 113549, 1, 12, 1, 1});
2457d862a646 8076190: Customizing the generation of a PKCS12 keystore
weijun
parents: 51216
diff changeset
   776
    public static ObjectIdentifier pbeWithSHA1AndRC4_40_oid =
2457d862a646 8076190: Customizing the generation of a PKCS12 keystore
weijun
parents: 51216
diff changeset
   777
        ObjectIdentifier.newInternal(new int[] {1, 2, 840, 113549, 1, 12, 1, 2});
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
    public static ObjectIdentifier pbeWithSHA1AndDESede_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
        ObjectIdentifier.newInternal(new int[] {1, 2, 840, 113549, 1, 12, 1, 3});
52996
2457d862a646 8076190: Customizing the generation of a PKCS12 keystore
weijun
parents: 51216
diff changeset
   780
    public static ObjectIdentifier pbeWithSHA1AndRC2_128_oid =
2457d862a646 8076190: Customizing the generation of a PKCS12 keystore
weijun
parents: 51216
diff changeset
   781
        ObjectIdentifier.newInternal(new int[] {1, 2, 840, 113549, 1, 12, 1, 5});
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
    public static ObjectIdentifier pbeWithSHA1AndRC2_40_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
        ObjectIdentifier.newInternal(new int[] {1, 2, 840, 113549, 1, 12, 1, 6});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
     * Note the preferred OIDs are named simply with no "OIW" or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
     * "PKIX" in them, even though they may point to data from these
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
     * specs; e.g. SHA_oid, DH_oid, DSA_oid, SHA1WithDSA_oid...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
     * Algorithm ID for Diffie Hellman Key agreement, from PKCS #3.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
     * Parameters include public values P and G, and may optionally specify
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
     * the length of the private key X.  Alternatively, algorithm parameters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
     * may be derived from another source such as a Certificate Authority's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
     * certificate.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
     * OID = 1.2.840.113549.1.3.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
        DH_oid = ObjectIdentifier.newInternal(DH_data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
     * Algorithm ID for the Diffie Hellman Key Agreement (DH), from RFC 3279.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
     * Parameters may include public values P and G.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
     * OID = 1.2.840.10046.2.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
        DH_PKIX_oid = ObjectIdentifier.newInternal(DH_PKIX_data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
     * Algorithm ID for the Digital Signing Algorithm (DSA), from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
     * NIST OIW Stable Agreements part 12.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
     * Parameters may include public values P, Q, and G; or these may be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
     * derived from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
     * another source such as a Certificate Authority's certificate.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
     * OID = 1.3.14.3.2.12
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
        DSA_OIW_oid = ObjectIdentifier.newInternal(DSA_OIW_data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
     * Algorithm ID for the Digital Signing Algorithm (DSA), from RFC 3279.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
     * Parameters may include public values P, Q, and G; or these may be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
     * derived from another source such as a Certificate Authority's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
     * certificate.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
     * OID = 1.2.840.10040.4.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
        DSA_oid = ObjectIdentifier.newInternal(DSA_PKIX_data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
     * Algorithm ID for RSA keys used for any purpose, as defined in X.509.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
     * The algorithm parameter is a single value, the number of bits in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
     * public modulus.
2944
276b6d106714 6570344: Invalid RSA OID in sun.security.x509.AlgorithmId
xuelei
parents: 2
diff changeset
   831
     * OID = 2.5.8.1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
        RSA_oid = ObjectIdentifier.newInternal(RSA_data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
     * Identifies a signing algorithm where an MD2 digest is encrypted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
     * using an RSA private key; defined in PKCS #1.  Use of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
     * signing algorithm is discouraged due to MD2 vulnerabilities.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
     * OID = 1.2.840.113549.1.1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
        md2WithRSAEncryption_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
            ObjectIdentifier.newInternal(md2WithRSAEncryption_data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
     * Identifies a signing algorithm where an MD5 digest is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
     * encrypted using an RSA private key; defined in PKCS #1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
     * OID = 1.2.840.113549.1.1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
        md5WithRSAEncryption_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
            ObjectIdentifier.newInternal(md5WithRSAEncryption_data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
     * Identifies a signing algorithm where a SHA1 digest is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
     * encrypted using an RSA private key; defined by RSA DSI.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
     * OID = 1.2.840.113549.1.1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
        sha1WithRSAEncryption_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
            ObjectIdentifier.newInternal(sha1WithRSAEncryption_data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
     * Identifies a signing algorithm where a SHA1 digest is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
     * encrypted using an RSA private key; defined in NIST OIW.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
     * OID = 1.3.14.3.2.29
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
        sha1WithRSAEncryption_OIW_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
            ObjectIdentifier.newInternal(sha1WithRSAEncryption_OIW_data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
    /**
12685
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   869
     * Identifies a signing algorithm where a SHA224 digest is
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   870
     * encrypted using an RSA private key; defined by PKCS #1.
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   871
     * OID = 1.2.840.113549.1.1.14
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   872
     */
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   873
        sha224WithRSAEncryption_oid =
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   874
            ObjectIdentifier.newInternal(sha224WithRSAEncryption_data);
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   875
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   876
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
     * Identifies a signing algorithm where a SHA256 digest is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
     * encrypted using an RSA private key; defined by PKCS #1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
     * OID = 1.2.840.113549.1.1.11
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
        sha256WithRSAEncryption_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
            ObjectIdentifier.newInternal(sha256WithRSAEncryption_data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
     * Identifies a signing algorithm where a SHA384 digest is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
     * encrypted using an RSA private key; defined by PKCS #1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
     * OID = 1.2.840.113549.1.1.12
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
        sha384WithRSAEncryption_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
            ObjectIdentifier.newInternal(sha384WithRSAEncryption_data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
     * Identifies a signing algorithm where a SHA512 digest is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
     * encrypted using an RSA private key; defined by PKCS #1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
     * OID = 1.2.840.113549.1.1.13
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
        sha512WithRSAEncryption_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
            ObjectIdentifier.newInternal(sha512WithRSAEncryption_data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
     * Identifies the FIPS 186 "Digital Signature Standard" (DSS), where a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
     * SHA digest is signed using the Digital Signing Algorithm (DSA).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
     * This should not be used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
     * OID = 1.3.14.3.2.13
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
        shaWithDSA_OIW_oid = ObjectIdentifier.newInternal(shaWithDSA_OIW_data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
     * Identifies the FIPS 186 "Digital Signature Standard" (DSS), where a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
     * SHA1 digest is signed using the Digital Signing Algorithm (DSA).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
     * OID = 1.3.14.3.2.27
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
        sha1WithDSA_OIW_oid = ObjectIdentifier.newInternal(sha1WithDSA_OIW_data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
     * Identifies the FIPS 186 "Digital Signature Standard" (DSS), where a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
     * SHA1 digest is signed using the Digital Signing Algorithm (DSA).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
     * OID = 1.2.840.10040.4.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
        sha1WithDSA_oid = ObjectIdentifier.newInternal(dsaWithSHA1_PKIX_data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
30033
b9c86c17164a 8078468: Update security libraries to use diamond with anonymous classes
darcy
parents: 28059
diff changeset
   922
        nameTable = new HashMap<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
        nameTable.put(MD5_oid, "MD5");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
        nameTable.put(MD2_oid, "MD2");
13361
bda5c2354fc6 7180907: Jarsigner -verify fails if rsa file used sha-256 with authenticated attributes
weijun
parents: 12685
diff changeset
   925
        nameTable.put(SHA_oid, "SHA-1");
bda5c2354fc6 7180907: Jarsigner -verify fails if rsa file used sha-256 with authenticated attributes
weijun
parents: 12685
diff changeset
   926
        nameTable.put(SHA224_oid, "SHA-224");
bda5c2354fc6 7180907: Jarsigner -verify fails if rsa file used sha-256 with authenticated attributes
weijun
parents: 12685
diff changeset
   927
        nameTable.put(SHA256_oid, "SHA-256");
bda5c2354fc6 7180907: Jarsigner -verify fails if rsa file used sha-256 with authenticated attributes
weijun
parents: 12685
diff changeset
   928
        nameTable.put(SHA384_oid, "SHA-384");
bda5c2354fc6 7180907: Jarsigner -verify fails if rsa file used sha-256 with authenticated attributes
weijun
parents: 12685
diff changeset
   929
        nameTable.put(SHA512_oid, "SHA-512");
50204
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   930
        nameTable.put(SHA512_224_oid, "SHA-512/224");
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   931
        nameTable.put(SHA512_256_oid, "SHA-512/256");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
        nameTable.put(RSAEncryption_oid, "RSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
        nameTable.put(RSA_oid, "RSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
        nameTable.put(DH_oid, "Diffie-Hellman");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
        nameTable.put(DH_PKIX_oid, "Diffie-Hellman");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
        nameTable.put(DSA_oid, "DSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
        nameTable.put(DSA_OIW_oid, "DSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
        nameTable.put(EC_oid, "EC");
13672
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   939
        nameTable.put(ECDH_oid, "ECDH");
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   940
15298
06867bfe82ac 8005408: KeyStore API enhancements
vinnie
parents: 13672
diff changeset
   941
        nameTable.put(AES_oid, "AES");
06867bfe82ac 8005408: KeyStore API enhancements
vinnie
parents: 13672
diff changeset
   942
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
        nameTable.put(sha1WithECDSA_oid, "SHA1withECDSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
        nameTable.put(sha224WithECDSA_oid, "SHA224withECDSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
        nameTable.put(sha256WithECDSA_oid, "SHA256withECDSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
        nameTable.put(sha384WithECDSA_oid, "SHA384withECDSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
        nameTable.put(sha512WithECDSA_oid, "SHA512withECDSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
        nameTable.put(md5WithRSAEncryption_oid, "MD5withRSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
        nameTable.put(md2WithRSAEncryption_oid, "MD2withRSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
        nameTable.put(sha1WithDSA_oid, "SHA1withDSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
        nameTable.put(sha1WithDSA_OIW_oid, "SHA1withDSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
        nameTable.put(shaWithDSA_OIW_oid, "SHA1withDSA");
13672
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   953
        nameTable.put(sha224WithDSA_oid, "SHA224withDSA");
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   954
        nameTable.put(sha256WithDSA_oid, "SHA256withDSA");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
        nameTable.put(sha1WithRSAEncryption_oid, "SHA1withRSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
        nameTable.put(sha1WithRSAEncryption_OIW_oid, "SHA1withRSA");
12685
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   957
        nameTable.put(sha224WithRSAEncryption_oid, "SHA224withRSA");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
        nameTable.put(sha256WithRSAEncryption_oid, "SHA256withRSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
        nameTable.put(sha384WithRSAEncryption_oid, "SHA384withRSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
        nameTable.put(sha512WithRSAEncryption_oid, "SHA512withRSA");
50204
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   961
        nameTable.put(sha512_224WithRSAEncryption_oid, "SHA512/224withRSA");
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   962
        nameTable.put(sha512_256WithRSAEncryption_oid, "SHA512/256withRSA");
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   963
        nameTable.put(RSASSA_PSS_oid, "RSASSA-PSS");
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   964
        nameTable.put(RSAES_OAEP_oid, "RSAES-OAEP");
3195a713e24d 8146293: Add support for RSASSA-PSS Signature algorithm
valeriep
parents: 47216
diff changeset
   965
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
        nameTable.put(pbeWithMD5AndDES_oid, "PBEWithMD5AndDES");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
        nameTable.put(pbeWithMD5AndRC2_oid, "PBEWithMD5AndRC2");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
        nameTable.put(pbeWithSHA1AndDES_oid, "PBEWithSHA1AndDES");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
        nameTable.put(pbeWithSHA1AndRC2_oid, "PBEWithSHA1AndRC2");
52996
2457d862a646 8076190: Customizing the generation of a PKCS12 keystore
weijun
parents: 51216
diff changeset
   970
        nameTable.put(pbeWithSHA1AndRC4_128_oid, "PBEWithSHA1AndRC4_128");
2457d862a646 8076190: Customizing the generation of a PKCS12 keystore
weijun
parents: 51216
diff changeset
   971
        nameTable.put(pbeWithSHA1AndRC4_40_oid, "PBEWithSHA1AndRC4_40");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
        nameTable.put(pbeWithSHA1AndDESede_oid, "PBEWithSHA1AndDESede");
52996
2457d862a646 8076190: Customizing the generation of a PKCS12 keystore
weijun
parents: 51216
diff changeset
   973
        nameTable.put(pbeWithSHA1AndRC2_128_oid, "PBEWithSHA1AndRC2_128");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
        nameTable.put(pbeWithSHA1AndRC2_40_oid, "PBEWithSHA1AndRC2_40");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
    }
4152
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   976
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   977
    /**
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   978
     * Creates a signature algorithm name from a digest algorithm
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   979
     * name and a encryption algorithm name.
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   980
     */
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   981
    public static String makeSigAlg(String digAlg, String encAlg) {
13361
bda5c2354fc6 7180907: Jarsigner -verify fails if rsa file used sha-256 with authenticated attributes
weijun
parents: 12685
diff changeset
   982
        digAlg = digAlg.replace("-", "");
bda5c2354fc6 7180907: Jarsigner -verify fails if rsa file used sha-256 with authenticated attributes
weijun
parents: 12685
diff changeset
   983
        if (encAlg.equalsIgnoreCase("EC")) encAlg = "ECDSA";
4152
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   984
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   985
        return digAlg + "with" + encAlg;
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   986
    }
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   987
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   988
    /**
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   989
     * Extracts the encryption algorithm name from a signature
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   990
     * algorithm name.
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   991
      */
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   992
    public static String getEncAlgFromSigAlg(String signatureAlgorithm) {
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   993
        signatureAlgorithm = signatureAlgorithm.toUpperCase(Locale.ENGLISH);
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   994
        int with = signatureAlgorithm.indexOf("WITH");
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   995
        String keyAlgorithm = null;
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   996
        if (with > 0) {
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   997
            int and = signatureAlgorithm.indexOf("AND", with + 4);
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   998
            if (and > 0) {
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   999
                keyAlgorithm = signatureAlgorithm.substring(with + 4, and);
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
  1000
            } else {
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
  1001
                keyAlgorithm = signatureAlgorithm.substring(with + 4);
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
  1002
            }
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
  1003
            if (keyAlgorithm.equalsIgnoreCase("ECDSA")) {
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
  1004
                keyAlgorithm = "EC";
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
  1005
            }
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
  1006
        }
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
  1007
        return keyAlgorithm;
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
  1008
    }
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
  1009
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
  1010
    /**
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
  1011
     * Extracts the digest algorithm name from a signature
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
  1012
     * algorithm name.
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
  1013
      */
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
  1014
    public static String getDigAlgFromSigAlg(String signatureAlgorithm) {
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
  1015
        signatureAlgorithm = signatureAlgorithm.toUpperCase(Locale.ENGLISH);
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
  1016
        int with = signatureAlgorithm.indexOf("WITH");
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
  1017
        if (with > 0) {
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
  1018
            return signatureAlgorithm.substring(0, with);
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
  1019
        }
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
  1020
        return null;
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
  1021
    }
33872
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1022
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1023
    /**
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1024
     * Checks if a signature algorithm matches a key algorithm, i.e. a
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1025
     * signature can be initialized with a key.
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1026
     *
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1027
     * @param kAlg must not be null
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1028
     * @param sAlg must not be null
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1029
     * @throws IllegalArgumentException if they do not match
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1030
     */
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1031
    public static void checkKeyAndSigAlgMatch(String kAlg, String sAlg) {
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1032
        String sAlgUp = sAlg.toUpperCase(Locale.US);
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1033
        if ((sAlgUp.endsWith("WITHRSA") && !kAlg.equalsIgnoreCase("RSA")) ||
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1034
                (sAlgUp.endsWith("WITHECDSA") && !kAlg.equalsIgnoreCase("EC")) ||
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1035
                (sAlgUp.endsWith("WITHDSA") && !kAlg.equalsIgnoreCase("DSA"))) {
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1036
            throw new IllegalArgumentException(
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1037
                    "key algorithm not compatible with signature algorithm");
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1038
        }
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1039
    }
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1040
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1041
    /**
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1042
     * Returns the default signature algorithm for a private key. The digest
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1043
     * part might evolve with time. Remember to update the spec of
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1044
     * {@link jdk.security.jarsigner.JarSigner.Builder#getDefaultSignatureAlgorithm(PrivateKey)}
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1045
     * if updated.
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1046
     *
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1047
     * @param k cannot be null
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1048
     * @return the default alg, might be null if unsupported
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1049
     */
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1050
    public static String getDefaultSigAlgForKey(PrivateKey k) {
51216
e429a304c97d 8204196: integer cleanup
ascarpino
parents: 50204
diff changeset
  1051
        switch (k.getAlgorithm().toUpperCase(Locale.ENGLISH)) {
33872
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1052
            case "EC":
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1053
                return ecStrength(KeyUtil.getKeySize(k))
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1054
                    + "withECDSA";
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1055
            case "DSA":
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1056
                return ifcFfcStrength(KeyUtil.getKeySize(k))
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1057
                    + "withDSA";
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1058
            case "RSA":
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1059
                return ifcFfcStrength(KeyUtil.getKeySize(k))
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1060
                    + "withRSA";
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1061
            default:
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1062
                return null;
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1063
        }
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1064
    }
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1065
42685
a538ed225637 8171190: Bump reference of NIST 800-57 Part 1 Rev 3 to Rev 4 in JarSigner API spec
weijun
parents: 37908
diff changeset
  1066
    // Values from SP800-57 part 1 rev 4 tables 2 and 3
33872
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1067
    private static String ecStrength (int bitLength) {
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1068
        if (bitLength >= 512) { // 256 bits of strength
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1069
            return "SHA512";
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1070
        } else if (bitLength >= 384) {  // 192 bits of strength
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1071
            return "SHA384";
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1072
        } else { // 128 bits of strength and less
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1073
            return "SHA256";
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1074
        }
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1075
    }
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1076
42685
a538ed225637 8171190: Bump reference of NIST 800-57 Part 1 Rev 3 to Rev 4 in JarSigner API spec
weijun
parents: 37908
diff changeset
  1077
    // Same values for RSA and DSA
33872
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1078
    private static String ifcFfcStrength (int bitLength) {
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1079
        if (bitLength > 7680) { // 256 bits
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1080
            return "SHA512";
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1081
        } else if (bitLength > 3072) {  // 192 bits
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1082
            return "SHA384";
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1083
        } else  { // 128 bits and less
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1084
            return "SHA256";
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1085
        }
94e3836950ec 8056174: New APIs for jar signing
weijun
parents: 31538
diff changeset
  1086
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
}