jdk/src/share/classes/sun/security/x509/AlgorithmId.java
author vinnie
Wed, 23 Jan 2013 23:13:54 +0000
changeset 15298 06867bfe82ac
parent 13672 604588823b5a
permissions -rw-r--r--
8005408: KeyStore API enhancements Reviewed-by: mullan
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
15298
06867bfe82ac 8005408: KeyStore API enhancements
vinnie
parents: 13672
diff changeset
     2
 * Copyright (c) 1996, 2013, 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
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * <P>Subclasses may be used, for example when when the algorithm ID has
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) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
                algid.equals((Object)DSA_oid) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
                algid.equals((Object)sha1WithDSA_oid)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
                ; // no parameter part encoded
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
                bytes.putNull();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
            }*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
            bytes.putNull();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
            bytes.putDerValue(params);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
        tmp.write(DerValue.tag_Sequence, bytes);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        out.write(tmp.toByteArray());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * Returns the DER-encoded X.509 AlgorithmId as a byte array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
    public final byte[] encode() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
        DerOutputStream out = new DerOutputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
        derEncode(out);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
        return out.toByteArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     * Returns the ISO OID for this algorithm.  This is usually converted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     * to a string and used as part of an algorithm name, for example
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * "OID.1.3.14.3.2.13" style notation.  Use the <code>getName</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * call when you do not need to ensure cross-system portability
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     * of algorithm names, or need a user friendly name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
    public final ObjectIdentifier getOID () {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
        return algid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     * Returns a name for the algorithm which may be more intelligible
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     * to humans than the algorithm's OID, but which won't necessarily
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     * be comprehensible on other systems.  For example, this might
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     * return a name such as "MD5withRSA" for a signature algorithm on
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     * some systems.  It also returns names like "OID.1.2.3.4", when
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     * no particular name for the algorithm is known.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
    public String getName() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
        String algName = nameTable.get(algid);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
        if (algName != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
            return algName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        }
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 6122
diff changeset
   233
        if ((params != null) && algid.equals((Object)specifiedWithECDSA_oid)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
                AlgorithmId paramsId =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
                        AlgorithmId.parse(new DerValue(getEncodedParams()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
                String paramsName = paramsId.getName();
13361
bda5c2354fc6 7180907: Jarsigner -verify fails if rsa file used sha-256 with authenticated attributes
weijun
parents: 12685
diff changeset
   238
                algName = makeSigAlg(paramsName, "EC");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
            } catch (IOException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
                // ignore
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
        return (algName == null) ? algid.toString() : algName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
    public AlgorithmParameters getParameters() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
        return algParams;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     * Returns the DER encoded parameter, which can then be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     * used to initialize java.security.AlgorithmParamters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     * @return DER encoded parameters, or null not present.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
    public byte[] getEncodedParams() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
        return (params == null) ? null : params.toByteArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     * Returns true iff the argument indicates the same algorithm
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     * with the same parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
    public boolean equals(AlgorithmId other) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
        boolean paramsEqual =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
          (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
   267
        return (algid.equals((Object)other.algid) && paramsEqual);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     * Compares this AlgorithmID to another.  If algorithm parameters are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     * available, they are compared.  Otherwise, just the object IDs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     * for the algorithm are compared.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
     * @param other preferably an AlgorithmId, else an ObjectIdentifier
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
    public boolean equals(Object other) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
        if (this == other) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
        if (other instanceof AlgorithmId) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
            return equals((AlgorithmId) other);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
        } else if (other instanceof ObjectIdentifier) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
            return equals((ObjectIdentifier) other);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     * Compares two algorithm IDs for equality.  Returns true iff
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
     * they are the same algorithm, ignoring algorithm parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
    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
   295
        return algid.equals((Object)id);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
     * Returns a hashcode for this AlgorithmId.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
     * @return a hashcode for this AlgorithmId.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
    public int hashCode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
        StringBuilder sbuf = new StringBuilder();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
        sbuf.append(algid.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
        sbuf.append(paramsToString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
        return sbuf.toString().hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     * Provides a human-readable description of the algorithm parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     * This may be redefined by subclasses which parse those parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
    protected String paramsToString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
        if (params == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
            return "";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
        } else if (algParams != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
            return algParams.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
            return ", params unparsed";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     * Returns a string describing the algorithm and its parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
        return getName() + paramsToString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     * Parse (unmarshal) an ID from a DER sequence input value.  This form
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     * parsing might be used when expanding a value which has already been
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     * partially unmarshaled as a set or sequence member.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
     * @exception IOException on error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
     * @param val the input value, which contains the algid and, if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
     *          there are any parameters, those parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     * @return an ID for the algorithm.  If the system is configured
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     *          appropriately, this may be an instance of a class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     *          with some kind of special support for this algorithm.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     *          In that case, you may "narrow" the type of the ID.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
    public static AlgorithmId parse(DerValue val) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
        if (val.tag != DerValue.tag_Sequence) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
            throw new IOException("algid parse error, not a sequence");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
         * Get the algorithm ID and any parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
        ObjectIdentifier        algid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
        DerValue                params;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
        DerInputStream          in = val.toDerInputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
        algid = in.getOID();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
        if (in.available() == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
            params = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
            params = in.getDerValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
            if (params.tag == DerValue.tag_Null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
                if (params.length() != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
                    throw new IOException("invalid NULL");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
                params = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
            if (in.available() != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
                throw new IOException("Invalid AlgorithmIdentifier: extra data");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
        return new AlgorithmId(algid, params);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     * Returns one of the algorithm IDs most commonly associated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     * with this algorithm name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     * @param algname the name being used
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     * @deprecated use the short get form of this method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
     * @exception NoSuchAlgorithmException on error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
    public static AlgorithmId getAlgorithmId(String algname)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
            throws NoSuchAlgorithmException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
        return get(algname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     * Returns one of the algorithm IDs most commonly associated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     * with this algorithm name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     * @param algname the name being used
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     * @exception NoSuchAlgorithmException on error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
    public static AlgorithmId get(String algname)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
            throws NoSuchAlgorithmException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
        ObjectIdentifier oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
            oid = algOID(algname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
        } catch (IOException ioe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
            throw new NoSuchAlgorithmException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
                ("Invalid ObjectIdentifier " + algname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
        if (oid == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
            throw new NoSuchAlgorithmException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
                ("unrecognized algorithm name: " + algname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
        return new AlgorithmId(oid);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
     * Returns one of the algorithm IDs most commonly associated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
     * with this algorithm parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
     * @param algparams the associated algorithm parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
     * @exception NoSuchAlgorithmException on error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
    public static AlgorithmId get(AlgorithmParameters algparams)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
            throws NoSuchAlgorithmException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
        ObjectIdentifier oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
        String algname = algparams.getAlgorithm();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
            oid = algOID(algname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
        } catch (IOException ioe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
            throw new NoSuchAlgorithmException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
                ("Invalid ObjectIdentifier " + algname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
        if (oid == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
            throw new NoSuchAlgorithmException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
                ("unrecognized algorithm name: " + algname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
        return new AlgorithmId(oid, algparams);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     * Translates from some common algorithm names to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
     * OID with which they're usually associated ... this mapping
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
     * is the reverse of the one below, except in those cases
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     * where synonyms are supported or where a given algorithm
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
     * is commonly associated with multiple OIDs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
     * XXX This method needs to be enhanced so that we can also pass the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
     * scope of the algorithm name to it, e.g., the algorithm name "DSA"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
     * may have a different OID when used as a "Signature" algorithm than when
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
     * used as a "KeyPairGenerator" algorithm.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
    private static ObjectIdentifier algOID(String name) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
        // See if algname is in printable OID ("dot-dot") notation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
        if (name.indexOf('.') != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
            if (name.startsWith("OID.")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
                return new ObjectIdentifier(name.substring("OID.".length()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
                return new ObjectIdentifier(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
        // Digesting algorithms
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
        if (name.equalsIgnoreCase("MD5")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
            return AlgorithmId.MD5_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
        if (name.equalsIgnoreCase("MD2")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
            return AlgorithmId.MD2_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
        if (name.equalsIgnoreCase("SHA") || name.equalsIgnoreCase("SHA1")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
            || name.equalsIgnoreCase("SHA-1")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
            return AlgorithmId.SHA_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
        if (name.equalsIgnoreCase("SHA-256") ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
            name.equalsIgnoreCase("SHA256")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
            return AlgorithmId.SHA256_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
        if (name.equalsIgnoreCase("SHA-384") ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
            name.equalsIgnoreCase("SHA384")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
            return AlgorithmId.SHA384_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
        if (name.equalsIgnoreCase("SHA-512") ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
            name.equalsIgnoreCase("SHA512")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
            return AlgorithmId.SHA512_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
        }
12685
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   482
        if (name.equalsIgnoreCase("SHA-224") ||
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   483
            name.equalsIgnoreCase("SHA224")) {
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   484
            return AlgorithmId.SHA224_oid;
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   485
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
        // Various public key algorithms
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
        if (name.equalsIgnoreCase("RSA")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
            return AlgorithmId.RSAEncryption_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
        if (name.equalsIgnoreCase("Diffie-Hellman")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
            || name.equalsIgnoreCase("DH")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
            return AlgorithmId.DH_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
        if (name.equalsIgnoreCase("DSA")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
            return AlgorithmId.DSA_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
        if (name.equalsIgnoreCase("EC")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
            return EC_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
        }
13672
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   501
        if (name.equalsIgnoreCase("ECDH")) {
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   502
            return AlgorithmId.ECDH_oid;
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   503
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
15298
06867bfe82ac 8005408: KeyStore API enhancements
vinnie
parents: 13672
diff changeset
   505
        // Secret key algorithms
06867bfe82ac 8005408: KeyStore API enhancements
vinnie
parents: 13672
diff changeset
   506
        if (name.equalsIgnoreCase("AES")) {
06867bfe82ac 8005408: KeyStore API enhancements
vinnie
parents: 13672
diff changeset
   507
            return AlgorithmId.AES_oid;
06867bfe82ac 8005408: KeyStore API enhancements
vinnie
parents: 13672
diff changeset
   508
        }
06867bfe82ac 8005408: KeyStore API enhancements
vinnie
parents: 13672
diff changeset
   509
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
        // Common signature types
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
        if (name.equalsIgnoreCase("MD5withRSA")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
            || name.equalsIgnoreCase("MD5/RSA")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
            return AlgorithmId.md5WithRSAEncryption_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
        if (name.equalsIgnoreCase("MD2withRSA")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
            || name.equalsIgnoreCase("MD2/RSA")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
            return AlgorithmId.md2WithRSAEncryption_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
        if (name.equalsIgnoreCase("SHAwithDSA")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
            || name.equalsIgnoreCase("SHA1withDSA")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
            || name.equalsIgnoreCase("SHA/DSA")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
            || name.equalsIgnoreCase("SHA1/DSA")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
            || name.equalsIgnoreCase("DSAWithSHA1")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
            || name.equalsIgnoreCase("DSS")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
            || name.equalsIgnoreCase("SHA-1/DSA")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
            return AlgorithmId.sha1WithDSA_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
        }
13672
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   528
        if (name.equalsIgnoreCase("SHA224WithDSA")) {
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   529
            return AlgorithmId.sha224WithDSA_oid;
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   530
        }
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   531
        if (name.equalsIgnoreCase("SHA256WithDSA")) {
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   532
            return AlgorithmId.sha256WithDSA_oid;
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   533
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
        if (name.equalsIgnoreCase("SHA1WithRSA")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
            || name.equalsIgnoreCase("SHA1/RSA")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
            return AlgorithmId.sha1WithRSAEncryption_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
        if (name.equalsIgnoreCase("SHA1withECDSA")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
                || name.equalsIgnoreCase("ECDSA")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
            return AlgorithmId.sha1WithECDSA_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
        }
3717
c2ea049a4442 6871847: AlgorithmId.get("SHA256withECDSA") not available
weijun
parents: 2944
diff changeset
   542
        if (name.equalsIgnoreCase("SHA224withECDSA")) {
c2ea049a4442 6871847: AlgorithmId.get("SHA256withECDSA") not available
weijun
parents: 2944
diff changeset
   543
            return AlgorithmId.sha224WithECDSA_oid;
c2ea049a4442 6871847: AlgorithmId.get("SHA256withECDSA") not available
weijun
parents: 2944
diff changeset
   544
        }
c2ea049a4442 6871847: AlgorithmId.get("SHA256withECDSA") not available
weijun
parents: 2944
diff changeset
   545
        if (name.equalsIgnoreCase("SHA256withECDSA")) {
c2ea049a4442 6871847: AlgorithmId.get("SHA256withECDSA") not available
weijun
parents: 2944
diff changeset
   546
            return AlgorithmId.sha256WithECDSA_oid;
c2ea049a4442 6871847: AlgorithmId.get("SHA256withECDSA") not available
weijun
parents: 2944
diff changeset
   547
        }
c2ea049a4442 6871847: AlgorithmId.get("SHA256withECDSA") not available
weijun
parents: 2944
diff changeset
   548
        if (name.equalsIgnoreCase("SHA384withECDSA")) {
c2ea049a4442 6871847: AlgorithmId.get("SHA256withECDSA") not available
weijun
parents: 2944
diff changeset
   549
            return AlgorithmId.sha384WithECDSA_oid;
c2ea049a4442 6871847: AlgorithmId.get("SHA256withECDSA") not available
weijun
parents: 2944
diff changeset
   550
        }
c2ea049a4442 6871847: AlgorithmId.get("SHA256withECDSA") not available
weijun
parents: 2944
diff changeset
   551
        if (name.equalsIgnoreCase("SHA512withECDSA")) {
c2ea049a4442 6871847: AlgorithmId.get("SHA256withECDSA") not available
weijun
parents: 2944
diff changeset
   552
            return AlgorithmId.sha512WithECDSA_oid;
c2ea049a4442 6871847: AlgorithmId.get("SHA256withECDSA") not available
weijun
parents: 2944
diff changeset
   553
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
        // See if any of the installed providers supply a mapping from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
        // the given algorithm name to an OID string
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
        String oidString;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
        if (!initOidTable) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
            Provider[] provs = Security.getProviders();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
            for (int i=0; i<provs.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
                for (Enumeration<Object> enum_ = provs[i].keys();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
                     enum_.hasMoreElements(); ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
                    String alias = (String)enum_.nextElement();
6122
16fa7ed7ff1b 6867345: Turkish regional options cause NPE in sun.security.x509.AlgorithmId.algOID
xuelei
parents: 5506
diff changeset
   564
                    String upperCaseAlias = alias.toUpperCase(Locale.ENGLISH);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
                    int index;
6122
16fa7ed7ff1b 6867345: Turkish regional options cause NPE in sun.security.x509.AlgorithmId.algOID
xuelei
parents: 5506
diff changeset
   566
                    if (upperCaseAlias.startsWith("ALG.ALIAS") &&
16fa7ed7ff1b 6867345: Turkish regional options cause NPE in sun.security.x509.AlgorithmId.algOID
xuelei
parents: 5506
diff changeset
   567
                            (index=upperCaseAlias.indexOf("OID.", 0)) != -1) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
                        index += "OID.".length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
                        if (index == alias.length()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
                            // invalid alias entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
                            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
                        if (oidTable == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
                            oidTable = new HashMap<String,ObjectIdentifier>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
                        oidString = alias.substring(index);
6122
16fa7ed7ff1b 6867345: Turkish regional options cause NPE in sun.security.x509.AlgorithmId.algOID
xuelei
parents: 5506
diff changeset
   577
                        String stdAlgName = provs[i].getProperty(alias);
16fa7ed7ff1b 6867345: Turkish regional options cause NPE in sun.security.x509.AlgorithmId.algOID
xuelei
parents: 5506
diff changeset
   578
                        if (stdAlgName != null) {
16fa7ed7ff1b 6867345: Turkish regional options cause NPE in sun.security.x509.AlgorithmId.algOID
xuelei
parents: 5506
diff changeset
   579
                            stdAlgName = stdAlgName.toUpperCase(Locale.ENGLISH);
16fa7ed7ff1b 6867345: Turkish regional options cause NPE in sun.security.x509.AlgorithmId.algOID
xuelei
parents: 5506
diff changeset
   580
                        }
16fa7ed7ff1b 6867345: Turkish regional options cause NPE in sun.security.x509.AlgorithmId.algOID
xuelei
parents: 5506
diff changeset
   581
                        if (stdAlgName != null &&
16fa7ed7ff1b 6867345: Turkish regional options cause NPE in sun.security.x509.AlgorithmId.algOID
xuelei
parents: 5506
diff changeset
   582
                                oidTable.get(stdAlgName) == null) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
                            oidTable.put(stdAlgName,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
                                         new ObjectIdentifier(oidString));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
            }
6122
16fa7ed7ff1b 6867345: Turkish regional options cause NPE in sun.security.x509.AlgorithmId.algOID
xuelei
parents: 5506
diff changeset
   589
16fa7ed7ff1b 6867345: Turkish regional options cause NPE in sun.security.x509.AlgorithmId.algOID
xuelei
parents: 5506
diff changeset
   590
            if (oidTable == null) {
16fa7ed7ff1b 6867345: Turkish regional options cause NPE in sun.security.x509.AlgorithmId.algOID
xuelei
parents: 5506
diff changeset
   591
                oidTable = new HashMap<String,ObjectIdentifier>(1);
16fa7ed7ff1b 6867345: Turkish regional options cause NPE in sun.security.x509.AlgorithmId.algOID
xuelei
parents: 5506
diff changeset
   592
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
            initOidTable = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
6122
16fa7ed7ff1b 6867345: Turkish regional options cause NPE in sun.security.x509.AlgorithmId.algOID
xuelei
parents: 5506
diff changeset
   596
        return oidTable.get(name.toUpperCase(Locale.ENGLISH));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
    private static ObjectIdentifier oid(int ... values) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
        return ObjectIdentifier.newInternal(values);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
    private static boolean initOidTable = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
    private static Map<String,ObjectIdentifier> oidTable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
    private static final Map<ObjectIdentifier,String> nameTable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
    /*****************************************************************/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
     * HASHING ALGORITHMS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
     * Algorithm ID for the MD2 Message Digest Algorthm, from RFC 1319.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
     * OID = 1.2.840.113549.2.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
    public static final ObjectIdentifier MD2_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
    ObjectIdentifier.newInternal(new int[] {1, 2, 840, 113549, 2, 2});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
     * Algorithm ID for the MD5 Message Digest Algorthm, from RFC 1321.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
     * OID = 1.2.840.113549.2.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
    public static final ObjectIdentifier MD5_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
    ObjectIdentifier.newInternal(new int[] {1, 2, 840, 113549, 2, 5});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
     * Algorithm ID for the SHA1 Message Digest Algorithm, from FIPS 180-1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
     * This is sometimes called "SHA", though that is often confusing since
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
     * many people refer to FIPS 180 (which has an error) as defining SHA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
     * OID = 1.3.14.3.2.26. Old SHA-0 OID: 1.3.14.3.2.18.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
    public static final ObjectIdentifier SHA_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
    ObjectIdentifier.newInternal(new int[] {1, 3, 14, 3, 2, 26});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
12685
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   636
    public static final ObjectIdentifier SHA224_oid =
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   637
    ObjectIdentifier.newInternal(new int[] {2, 16, 840, 1, 101, 3, 4, 2, 4});
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   638
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
    public static final ObjectIdentifier SHA256_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
    ObjectIdentifier.newInternal(new int[] {2, 16, 840, 1, 101, 3, 4, 2, 1});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
    public static final ObjectIdentifier SHA384_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
    ObjectIdentifier.newInternal(new int[] {2, 16, 840, 1, 101, 3, 4, 2, 2});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
    public static final ObjectIdentifier SHA512_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
    ObjectIdentifier.newInternal(new int[] {2, 16, 840, 1, 101, 3, 4, 2, 3});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
     * COMMON PUBLIC KEY TYPES
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
    private static final int DH_data[] = { 1, 2, 840, 113549, 1, 3, 1 };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
    private static final int DH_PKIX_data[] = { 1, 2, 840, 10046, 2, 1 };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
    private static final int DSA_OIW_data[] = { 1, 3, 14, 3, 2, 12 };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
    private static final int DSA_PKIX_data[] = { 1, 2, 840, 10040, 4, 1 };
2944
276b6d106714 6570344: Invalid RSA OID in sun.security.x509.AlgorithmId
xuelei
parents: 2
diff changeset
   655
    private static final int RSA_data[] = { 2, 5, 8, 1, 1 };
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
    private static final int RSAEncryption_data[] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
                                 { 1, 2, 840, 113549, 1, 1, 1 };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
    public static final ObjectIdentifier DH_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
    public static final ObjectIdentifier DH_PKIX_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
    public static final ObjectIdentifier DSA_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
    public static final ObjectIdentifier DSA_OIW_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
    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
   664
    public static final ObjectIdentifier ECDH_oid = oid(1, 3, 132, 1, 12);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
    public static final ObjectIdentifier RSA_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
    public static final ObjectIdentifier RSAEncryption_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
    /*
15298
06867bfe82ac 8005408: KeyStore API enhancements
vinnie
parents: 13672
diff changeset
   669
     * COMMON SECRET KEY TYPES
06867bfe82ac 8005408: KeyStore API enhancements
vinnie
parents: 13672
diff changeset
   670
     */
06867bfe82ac 8005408: KeyStore API enhancements
vinnie
parents: 13672
diff changeset
   671
    public static final ObjectIdentifier AES_oid =
06867bfe82ac 8005408: KeyStore API enhancements
vinnie
parents: 13672
diff changeset
   672
                                            oid(2, 16, 840, 1, 101, 3, 4, 1);
06867bfe82ac 8005408: KeyStore API enhancements
vinnie
parents: 13672
diff changeset
   673
06867bfe82ac 8005408: KeyStore API enhancements
vinnie
parents: 13672
diff changeset
   674
    /*
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
     * COMMON SIGNATURE ALGORITHMS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
    private static final int md2WithRSAEncryption_data[] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
                                       { 1, 2, 840, 113549, 1, 1, 2 };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
    private static final int md5WithRSAEncryption_data[] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
                                       { 1, 2, 840, 113549, 1, 1, 4 };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
    private static final int sha1WithRSAEncryption_data[] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
                                       { 1, 2, 840, 113549, 1, 1, 5 };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
    private static final int sha1WithRSAEncryption_OIW_data[] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
                                       { 1, 3, 14, 3, 2, 29 };
12685
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   685
    private static final int sha224WithRSAEncryption_data[] =
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   686
                                       { 1, 2, 840, 113549, 1, 1, 14 };
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
    private static final int sha256WithRSAEncryption_data[] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
                                       { 1, 2, 840, 113549, 1, 1, 11 };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
    private static final int sha384WithRSAEncryption_data[] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
                                       { 1, 2, 840, 113549, 1, 1, 12 };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
    private static final int sha512WithRSAEncryption_data[] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
                                       { 1, 2, 840, 113549, 1, 1, 13 };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
    private static final int shaWithDSA_OIW_data[] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
                                       { 1, 3, 14, 3, 2, 13 };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
    private static final int sha1WithDSA_OIW_data[] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
                                       { 1, 3, 14, 3, 2, 27 };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
    private static final int dsaWithSHA1_PKIX_data[] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
                                       { 1, 2, 840, 10040, 4, 3 };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
    public static final ObjectIdentifier md2WithRSAEncryption_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
    public static final ObjectIdentifier md5WithRSAEncryption_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
    public static final ObjectIdentifier sha1WithRSAEncryption_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
    public static final ObjectIdentifier sha1WithRSAEncryption_OIW_oid;
12685
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   704
    public static final ObjectIdentifier sha224WithRSAEncryption_oid;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
    public static final ObjectIdentifier sha256WithRSAEncryption_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
    public static final ObjectIdentifier sha384WithRSAEncryption_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
    public static final ObjectIdentifier sha512WithRSAEncryption_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
    public static final ObjectIdentifier shaWithDSA_OIW_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
    public static final ObjectIdentifier sha1WithDSA_OIW_oid;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
    public static final ObjectIdentifier sha1WithDSA_oid;
13672
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   711
    public static final ObjectIdentifier sha224WithDSA_oid =
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   712
                                            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
   713
    public static final ObjectIdentifier sha256WithDSA_oid =
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   714
                                            oid(2, 16, 840, 1, 101, 3, 4, 3, 2);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
    public static final ObjectIdentifier sha1WithECDSA_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
                                            oid(1, 2, 840, 10045, 4, 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
    public static final ObjectIdentifier sha224WithECDSA_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
                                            oid(1, 2, 840, 10045, 4, 3, 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
    public static final ObjectIdentifier sha256WithECDSA_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
                                            oid(1, 2, 840, 10045, 4, 3, 2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
    public static final ObjectIdentifier sha384WithECDSA_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
                                            oid(1, 2, 840, 10045, 4, 3, 3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
    public static final ObjectIdentifier sha512WithECDSA_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
                                            oid(1, 2, 840, 10045, 4, 3, 4);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
    public static final ObjectIdentifier specifiedWithECDSA_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
                                            oid(1, 2, 840, 10045, 4, 3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
     * Algorithm ID for the PBE encryption algorithms from PKCS#5 and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
     * PKCS#12.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
    public static final ObjectIdentifier pbeWithMD5AndDES_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
        ObjectIdentifier.newInternal(new int[]{1, 2, 840, 113549, 1, 5, 3});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
    public static final ObjectIdentifier pbeWithMD5AndRC2_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
        ObjectIdentifier.newInternal(new int[] {1, 2, 840, 113549, 1, 5, 6});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
    public static final ObjectIdentifier pbeWithSHA1AndDES_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
        ObjectIdentifier.newInternal(new int[] {1, 2, 840, 113549, 1, 5, 10});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
    public static final ObjectIdentifier pbeWithSHA1AndRC2_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
        ObjectIdentifier.newInternal(new int[] {1, 2, 840, 113549, 1, 5, 11});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
    public static ObjectIdentifier pbeWithSHA1AndDESede_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
        ObjectIdentifier.newInternal(new int[] {1, 2, 840, 113549, 1, 12, 1, 3});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
    public static ObjectIdentifier pbeWithSHA1AndRC2_40_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
        ObjectIdentifier.newInternal(new int[] {1, 2, 840, 113549, 1, 12, 1, 6});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
     * Note the preferred OIDs are named simply with no "OIW" or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
     * "PKIX" in them, even though they may point to data from these
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
     * specs; e.g. SHA_oid, DH_oid, DSA_oid, SHA1WithDSA_oid...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
     * Algorithm ID for Diffie Hellman Key agreement, from PKCS #3.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
     * Parameters include public values P and G, and may optionally specify
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
     * the length of the private key X.  Alternatively, algorithm parameters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
     * may be derived from another source such as a Certificate Authority's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
     * certificate.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
     * OID = 1.2.840.113549.1.3.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
        DH_oid = ObjectIdentifier.newInternal(DH_data);
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 Diffie Hellman Key Agreement (DH), from RFC 3279.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
     * Parameters may include public values P and G.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
     * OID = 1.2.840.10046.2.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
        DH_PKIX_oid = ObjectIdentifier.newInternal(DH_PKIX_data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
     * Algorithm ID for the Digital Signing Algorithm (DSA), from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
     * NIST OIW Stable Agreements part 12.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
     * Parameters may include public values P, Q, and G; or these may be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
     * derived from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
     * another source such as a Certificate Authority's certificate.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
     * OID = 1.3.14.3.2.12
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
        DSA_OIW_oid = ObjectIdentifier.newInternal(DSA_OIW_data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
     * Algorithm ID for the Digital Signing Algorithm (DSA), from RFC 3279.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
     * Parameters may include public values P, Q, and G; or these may be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
     * derived from another source such as a Certificate Authority's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
     * certificate.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
     * OID = 1.2.840.10040.4.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
        DSA_oid = ObjectIdentifier.newInternal(DSA_PKIX_data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
     * Algorithm ID for RSA keys used for any purpose, as defined in X.509.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
     * The algorithm parameter is a single value, the number of bits in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
     * public modulus.
2944
276b6d106714 6570344: Invalid RSA OID in sun.security.x509.AlgorithmId
xuelei
parents: 2
diff changeset
   792
     * OID = 2.5.8.1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
        RSA_oid = ObjectIdentifier.newInternal(RSA_data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
     * Algorithm ID for RSA keys used with RSA encryption, as defined
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
     * in PKCS #1.  There are no parameters associated with this algorithm.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
     * OID = 1.2.840.113549.1.1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
        RSAEncryption_oid = ObjectIdentifier.newInternal(RSAEncryption_data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
     * Identifies a signing algorithm where an MD2 digest is encrypted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
     * using an RSA private key; defined in PKCS #1.  Use of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
     * signing algorithm is discouraged due to MD2 vulnerabilities.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
     * OID = 1.2.840.113549.1.1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
        md2WithRSAEncryption_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
            ObjectIdentifier.newInternal(md2WithRSAEncryption_data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
     * Identifies a signing algorithm where an MD5 digest is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
     * encrypted using an RSA private key; defined in PKCS #1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
     * OID = 1.2.840.113549.1.1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
        md5WithRSAEncryption_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
            ObjectIdentifier.newInternal(md5WithRSAEncryption_data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
     * Identifies a signing algorithm where a SHA1 digest is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
     * encrypted using an RSA private key; defined by RSA DSI.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
     * OID = 1.2.840.113549.1.1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
        sha1WithRSAEncryption_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
            ObjectIdentifier.newInternal(sha1WithRSAEncryption_data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
     * Identifies a signing algorithm where a SHA1 digest is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
     * encrypted using an RSA private key; defined in NIST OIW.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
     * OID = 1.3.14.3.2.29
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
        sha1WithRSAEncryption_OIW_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
            ObjectIdentifier.newInternal(sha1WithRSAEncryption_OIW_data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
    /**
12685
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   837
     * Identifies a signing algorithm where a SHA224 digest is
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   838
     * encrypted using an RSA private key; defined by PKCS #1.
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   839
     * OID = 1.2.840.113549.1.1.14
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   840
     */
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   841
        sha224WithRSAEncryption_oid =
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   842
            ObjectIdentifier.newInternal(sha224WithRSAEncryption_data);
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   843
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   844
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
     * Identifies a signing algorithm where a SHA256 digest is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
     * encrypted using an RSA private key; defined by PKCS #1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
     * OID = 1.2.840.113549.1.1.11
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
        sha256WithRSAEncryption_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
            ObjectIdentifier.newInternal(sha256WithRSAEncryption_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 SHA384 digest is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
     * encrypted using an RSA private key; defined by PKCS #1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
     * OID = 1.2.840.113549.1.1.12
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
        sha384WithRSAEncryption_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
            ObjectIdentifier.newInternal(sha384WithRSAEncryption_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 SHA512 digest is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
     * encrypted using an RSA private key; defined by PKCS #1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
     * OID = 1.2.840.113549.1.1.13
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
        sha512WithRSAEncryption_oid =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
            ObjectIdentifier.newInternal(sha512WithRSAEncryption_data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
     * Identifies the FIPS 186 "Digital Signature Standard" (DSS), where a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
     * SHA digest is signed using the Digital Signing Algorithm (DSA).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
     * This should not be used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
     * OID = 1.3.14.3.2.13
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
        shaWithDSA_OIW_oid = ObjectIdentifier.newInternal(shaWithDSA_OIW_data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
     * Identifies the FIPS 186 "Digital Signature Standard" (DSS), where a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
     * SHA1 digest is signed using the Digital Signing Algorithm (DSA).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
     * OID = 1.3.14.3.2.27
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
        sha1WithDSA_OIW_oid = ObjectIdentifier.newInternal(sha1WithDSA_OIW_data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
     * Identifies the FIPS 186 "Digital Signature Standard" (DSS), where a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
     * SHA1 digest is signed using the Digital Signing Algorithm (DSA).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
     * OID = 1.2.840.10040.4.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
        sha1WithDSA_oid = ObjectIdentifier.newInternal(dsaWithSHA1_PKIX_data);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
        nameTable = new HashMap<ObjectIdentifier,String>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
        nameTable.put(MD5_oid, "MD5");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
        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
   893
        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
   894
        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
   895
        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
   896
        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
   897
        nameTable.put(SHA512_oid, "SHA-512");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
        nameTable.put(RSAEncryption_oid, "RSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
        nameTable.put(RSA_oid, "RSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
        nameTable.put(DH_oid, "Diffie-Hellman");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
        nameTable.put(DH_PKIX_oid, "Diffie-Hellman");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
        nameTable.put(DSA_oid, "DSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
        nameTable.put(DSA_OIW_oid, "DSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
        nameTable.put(EC_oid, "EC");
13672
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   905
        nameTable.put(ECDH_oid, "ECDH");
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   906
15298
06867bfe82ac 8005408: KeyStore API enhancements
vinnie
parents: 13672
diff changeset
   907
        nameTable.put(AES_oid, "AES");
06867bfe82ac 8005408: KeyStore API enhancements
vinnie
parents: 13672
diff changeset
   908
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
        nameTable.put(sha1WithECDSA_oid, "SHA1withECDSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
        nameTable.put(sha224WithECDSA_oid, "SHA224withECDSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
        nameTable.put(sha256WithECDSA_oid, "SHA256withECDSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
        nameTable.put(sha384WithECDSA_oid, "SHA384withECDSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
        nameTable.put(sha512WithECDSA_oid, "SHA512withECDSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
        nameTable.put(md5WithRSAEncryption_oid, "MD5withRSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
        nameTable.put(md2WithRSAEncryption_oid, "MD2withRSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
        nameTable.put(sha1WithDSA_oid, "SHA1withDSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
        nameTable.put(sha1WithDSA_OIW_oid, "SHA1withDSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
        nameTable.put(shaWithDSA_OIW_oid, "SHA1withDSA");
13672
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   919
        nameTable.put(sha224WithDSA_oid, "SHA224withDSA");
604588823b5a 7044060: Need to support NSA Suite B Cryptography algorithms
valeriep
parents: 13661
diff changeset
   920
        nameTable.put(sha256WithDSA_oid, "SHA256withDSA");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
        nameTable.put(sha1WithRSAEncryption_oid, "SHA1withRSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
        nameTable.put(sha1WithRSAEncryption_OIW_oid, "SHA1withRSA");
12685
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 10336
diff changeset
   923
        nameTable.put(sha224WithRSAEncryption_oid, "SHA224withRSA");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
        nameTable.put(sha256WithRSAEncryption_oid, "SHA256withRSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
        nameTable.put(sha384WithRSAEncryption_oid, "SHA384withRSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
        nameTable.put(sha512WithRSAEncryption_oid, "SHA512withRSA");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
        nameTable.put(pbeWithMD5AndDES_oid, "PBEWithMD5AndDES");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
        nameTable.put(pbeWithMD5AndRC2_oid, "PBEWithMD5AndRC2");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
        nameTable.put(pbeWithSHA1AndDES_oid, "PBEWithSHA1AndDES");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
        nameTable.put(pbeWithSHA1AndRC2_oid, "PBEWithSHA1AndRC2");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
        nameTable.put(pbeWithSHA1AndDESede_oid, "PBEWithSHA1AndDESede");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
        nameTable.put(pbeWithSHA1AndRC2_40_oid, "PBEWithSHA1AndRC2_40");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
    }
4152
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   934
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   935
    /**
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   936
     * Creates a signature algorithm name from a digest algorithm
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   937
     * name and a encryption algorithm name.
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   938
     */
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   939
    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
   940
        digAlg = digAlg.replace("-", "");
bda5c2354fc6 7180907: Jarsigner -verify fails if rsa file used sha-256 with authenticated attributes
weijun
parents: 12685
diff changeset
   941
        if (encAlg.equalsIgnoreCase("EC")) encAlg = "ECDSA";
4152
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   942
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   943
        return digAlg + "with" + encAlg;
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   944
    }
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   945
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   946
    /**
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   947
     * Extracts the encryption algorithm name from a signature
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   948
     * algorithm name.
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   949
      */
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   950
    public static String getEncAlgFromSigAlg(String signatureAlgorithm) {
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   951
        signatureAlgorithm = signatureAlgorithm.toUpperCase(Locale.ENGLISH);
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   952
        int with = signatureAlgorithm.indexOf("WITH");
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   953
        String keyAlgorithm = null;
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   954
        if (with > 0) {
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   955
            int and = signatureAlgorithm.indexOf("AND", with + 4);
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   956
            if (and > 0) {
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   957
                keyAlgorithm = signatureAlgorithm.substring(with + 4, and);
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   958
            } else {
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   959
                keyAlgorithm = signatureAlgorithm.substring(with + 4);
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   960
            }
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   961
            if (keyAlgorithm.equalsIgnoreCase("ECDSA")) {
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   962
                keyAlgorithm = "EC";
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   963
            }
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   964
        }
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   965
        return keyAlgorithm;
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   966
    }
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   967
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   968
    /**
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   969
     * Extracts the digest algorithm name from a signature
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   970
     * algorithm name.
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   971
      */
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   972
    public static String getDigAlgFromSigAlg(String signatureAlgorithm) {
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   973
        signatureAlgorithm = signatureAlgorithm.toUpperCase(Locale.ENGLISH);
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   974
        int with = signatureAlgorithm.indexOf("WITH");
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   975
        if (with > 0) {
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   976
            return signatureAlgorithm.substring(0, with);
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
        return null;
bc36a9f01ac6 6870812: enhance security tools to use ECC algorithms
weijun
parents: 3717
diff changeset
   979
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
}