src/java.base/share/classes/java/security/spec/PKCS8EncodedKeySpec.java
author naoto
Tue, 15 Oct 2019 09:25:59 -0700
changeset 58603 2312d1a04c49
parent 47216 71c04702a3d5
permissions -rw-r--r--
8212749: DecimalFormat.setGroupingSize(int) allows setting negative grouping size 8231984: Clarify semantics of DecimalFormat.getGroupingSize(0) Reviewed-by: rriggs
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
45118
e4258d800b54 8178278: Move Standard Algorithm Names document to specs directory
ihse
parents: 35302
diff changeset
     2
 * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.security.spec;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * This class represents the ASN.1 encoding of a private key,
18552
005e115dc6ee 8017326: Cleanup of the javadoc <code> tag in java.security.spec
juh
parents: 5506
diff changeset
    30
 * encoded according to the ASN.1 type {@code PrivateKeyInfo}.
005e115dc6ee 8017326: Cleanup of the javadoc <code> tag in java.security.spec
juh
parents: 5506
diff changeset
    31
 * The {@code PrivateKeyInfo} syntax is defined in the PKCS#8 standard
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * as follows:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * PrivateKeyInfo ::= SEQUENCE {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 *   version Version,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 *   privateKeyAlgorithm PrivateKeyAlgorithmIdentifier,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 *   privateKey PrivateKey,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 *   attributes [0] IMPLICIT Attributes OPTIONAL }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * Version ::= INTEGER
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * PrivateKeyAlgorithmIdentifier ::= AlgorithmIdentifier
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * PrivateKey ::= OCTET STRING
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * Attributes ::= SET OF Attribute
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * @author Jan Luehe
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * @see java.security.Key
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * @see java.security.KeyFactory
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * @see KeySpec
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * @see EncodedKeySpec
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * @see X509EncodedKeySpec
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
public class PKCS8EncodedKeySpec extends EncodedKeySpec {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    /**
26716
189794fe8ba2 8047223: Add algorithm parameter to EncodedKeySpec class and its two subclasses
juh
parents: 25859
diff changeset
    65
     * Creates a new {@code PKCS8EncodedKeySpec} with the given encoded key.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     * @param encodedKey the key, which is assumed to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     * encoded according to the PKCS #8 standard. The contents of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     * the array are copied to protect against subsequent modification.
26716
189794fe8ba2 8047223: Add algorithm parameter to EncodedKeySpec class and its two subclasses
juh
parents: 25859
diff changeset
    70
     * @throws NullPointerException if {@code encodedKey}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
     * is null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    public PKCS8EncodedKeySpec(byte[] encodedKey) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        super(encodedKey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    /**
26716
189794fe8ba2 8047223: Add algorithm parameter to EncodedKeySpec class and its two subclasses
juh
parents: 25859
diff changeset
    78
     * Creates a new {@code PKCS8EncodedKeySpec} with the given encoded key and
189794fe8ba2 8047223: Add algorithm parameter to EncodedKeySpec class and its two subclasses
juh
parents: 25859
diff changeset
    79
     * algorithm. This constructor is useful when subsequent callers of
189794fe8ba2 8047223: Add algorithm parameter to EncodedKeySpec class and its two subclasses
juh
parents: 25859
diff changeset
    80
     * the {@code PKCS8EncodedKeySpec} object might not know the
189794fe8ba2 8047223: Add algorithm parameter to EncodedKeySpec class and its two subclasses
juh
parents: 25859
diff changeset
    81
     * algorithm of the private key.
189794fe8ba2 8047223: Add algorithm parameter to EncodedKeySpec class and its two subclasses
juh
parents: 25859
diff changeset
    82
     *
189794fe8ba2 8047223: Add algorithm parameter to EncodedKeySpec class and its two subclasses
juh
parents: 25859
diff changeset
    83
     * @param encodedKey the key, which is assumed to be
189794fe8ba2 8047223: Add algorithm parameter to EncodedKeySpec class and its two subclasses
juh
parents: 25859
diff changeset
    84
     * encoded according to the PKCS #8 standard. The contents of
189794fe8ba2 8047223: Add algorithm parameter to EncodedKeySpec class and its two subclasses
juh
parents: 25859
diff changeset
    85
     * the array are copied to protect against subsequent modification.
189794fe8ba2 8047223: Add algorithm parameter to EncodedKeySpec class and its two subclasses
juh
parents: 25859
diff changeset
    86
     * @param algorithm the algorithm name of the encoded private key
189794fe8ba2 8047223: Add algorithm parameter to EncodedKeySpec class and its two subclasses
juh
parents: 25859
diff changeset
    87
     * See the KeyFactory section in the <a href=
45118
e4258d800b54 8178278: Move Standard Algorithm Names document to specs directory
ihse
parents: 35302
diff changeset
    88
     * "{@docRoot}/../specs/security/standard-names.html#keyfactory-algorithms">
e4258d800b54 8178278: Move Standard Algorithm Names document to specs directory
ihse
parents: 35302
diff changeset
    89
     * Java Security Standard Algorithm Names Specification</a>
26716
189794fe8ba2 8047223: Add algorithm parameter to EncodedKeySpec class and its two subclasses
juh
parents: 25859
diff changeset
    90
     * for information about standard algorithm names.
189794fe8ba2 8047223: Add algorithm parameter to EncodedKeySpec class and its two subclasses
juh
parents: 25859
diff changeset
    91
     * @throws NullPointerException if {@code encodedKey}
29379
1c96d0c40425 8074788: Javadoc typo in PKCS8EncodedKeySpec
darcy
parents: 26716
diff changeset
    92
     * or {@code algorithm} is null.
26716
189794fe8ba2 8047223: Add algorithm parameter to EncodedKeySpec class and its two subclasses
juh
parents: 25859
diff changeset
    93
     * @throws IllegalArgumentException if {@code algorithm} is
189794fe8ba2 8047223: Add algorithm parameter to EncodedKeySpec class and its two subclasses
juh
parents: 25859
diff changeset
    94
     * the empty string {@code ""}
35302
e4d2275861c3 8136494: Update "@since 1.9" to "@since 9" to match java.version.specification
iris
parents: 29379
diff changeset
    95
     * @since 9
26716
189794fe8ba2 8047223: Add algorithm parameter to EncodedKeySpec class and its two subclasses
juh
parents: 25859
diff changeset
    96
     */
189794fe8ba2 8047223: Add algorithm parameter to EncodedKeySpec class and its two subclasses
juh
parents: 25859
diff changeset
    97
    public PKCS8EncodedKeySpec(byte[] encodedKey, String algorithm) {
189794fe8ba2 8047223: Add algorithm parameter to EncodedKeySpec class and its two subclasses
juh
parents: 25859
diff changeset
    98
        super(encodedKey, algorithm);
189794fe8ba2 8047223: Add algorithm parameter to EncodedKeySpec class and its two subclasses
juh
parents: 25859
diff changeset
    99
    }
189794fe8ba2 8047223: Add algorithm parameter to EncodedKeySpec class and its two subclasses
juh
parents: 25859
diff changeset
   100
189794fe8ba2 8047223: Add algorithm parameter to EncodedKeySpec class and its two subclasses
juh
parents: 25859
diff changeset
   101
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * Returns the key bytes, encoded according to the PKCS #8 standard.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     * @return the PKCS #8 encoding of the key. Returns a new array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * each time this method is called.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    public byte[] getEncoded() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        return super.getEncoded();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * Returns the name of the encoding format associated with this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * key specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     *
18552
005e115dc6ee 8017326: Cleanup of the javadoc <code> tag in java.security.spec
juh
parents: 5506
diff changeset
   115
     * @return the string {@code "PKCS#8"}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    public final String getFormat() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
        return "PKCS#8";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
}