src/java.base/share/classes/java/security/cert/CertPath.java
author chegar
Thu, 17 Oct 2019 20:54:25 +0100
branchdatagramsocketimpl-branch
changeset 58679 9c3209ff7550
parent 58678 9cf78a70fa4f
parent 58242 94bb65cb37d3
permissions -rw-r--r--
datagramsocketimpl-branch: merge with default
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
57950
4612a3cfb927 8229999: Apply java.io.Serial annotations to security types in java.base
darcy
parents: 47216
diff changeset
     2
 * Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.security.cert;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.io.ByteArrayInputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.io.NotSerializableException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.io.ObjectStreamException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.io.Serializable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.util.Iterator;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.util.List;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * An immutable sequence of certificates (a certification path).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * This is an abstract class that defines the methods common to all
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
    39
 * {@code CertPath}s. Subclasses can handle different kinds of
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * certificates (X.509, PGP, etc.).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * <p>
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
    42
 * All {@code CertPath} objects have a type, a list of
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
    43
 * {@code Certificate}s, and one or more supported encodings. Because the
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
    44
 * {@code CertPath} class is immutable, a {@code CertPath} cannot
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * change in any externally visible way after being constructed. This
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * stipulation applies to all public fields and methods of this class and any
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * added or overridden by subclasses.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * <p>
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
    49
 * The type is a {@code String} that identifies the type of
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
    50
 * {@code Certificate}s in the certification path. For each
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
    51
 * certificate {@code cert} in a certification path {@code certPath},
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
    52
 * {@code cert.getType().equals(certPath.getType())} must be
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
    53
 * {@code true}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * <p>
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
    55
 * The list of {@code Certificate}s is an ordered {@code List} of
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
    56
 * zero or more {@code Certificate}s. This {@code List} and all
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
    57
 * of the {@code Certificate}s contained in it must be immutable.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * <p>
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
    59
 * Each {@code CertPath} object must support one or more encodings
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * so that the object can be translated into a byte array for storage or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * transmission to other parties. Preferably, these encodings should be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * well-documented standards (such as PKCS#7). One of the encodings supported
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
    63
 * by a {@code CertPath} is considered the default encoding. This
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * encoding is used if no encoding is explicitly requested (for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * {@link #getEncoded() getEncoded()} method, for instance).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * <p>
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
    67
 * All {@code CertPath} objects are also {@code Serializable}.
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
    68
 * {@code CertPath} objects are resolved into an alternate
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * {@link CertPathRep CertPathRep} object during serialization. This allows
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
    70
 * a {@code CertPath} object to be serialized into an equivalent
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * representation regardless of its underlying implementation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * <p>
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
    73
 * {@code CertPath} objects can be created with a
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
    74
 * {@code CertificateFactory} or they can be returned by other classes,
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
    75
 * such as a {@code CertPathBuilder}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 * <p>
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
    77
 * By convention, X.509 {@code CertPath}s (consisting of
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
    78
 * {@code X509Certificate}s), are ordered starting with the target
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 * certificate and ending with a certificate issued by the trust anchor. That
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 * is, the issuer of one certificate is the subject of the following one. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 * certificate representing the {@link TrustAnchor TrustAnchor} should not be
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
    82
 * included in the certification path. Unvalidated X.509 {@code CertPath}s
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
    83
 * may not follow these conventions. PKIX {@code CertPathValidator}s will
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 * detect any departure from these conventions that cause the certification
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
    85
 * path to be invalid and throw a {@code CertPathValidatorException}.
8152
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
    86
 *
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
    87
 * <p> Every implementation of the Java platform is required to support the
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
    88
 * following standard {@code CertPath} encodings:
8152
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
    89
 * <ul>
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
    90
 * <li>{@code PKCS7}</li>
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
    91
 * <li>{@code PkiPath}</li>
8152
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
    92
 * </ul>
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
    93
 * These encodings are described in the <a href=
45118
e4258d800b54 8178278: Move Standard Algorithm Names document to specs directory
ihse
parents: 25859
diff changeset
    94
 * "{@docRoot}/../specs/security/standard-names.html#certpath-encodings">
8152
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
    95
 * CertPath Encodings section</a> of the
45118
e4258d800b54 8178278: Move Standard Algorithm Names document to specs directory
ihse
parents: 25859
diff changeset
    96
 * Java Security Standard Algorithm Names Specification.
8152
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
    97
 * Consult the release documentation for your implementation to see if any
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
    98
 * other encodings are supported.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
 * <b>Concurrent Access</b>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
 * <p>
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   102
 * All {@code CertPath} objects must be thread-safe. That is, multiple
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
 * threads may concurrently invoke the methods defined in this class on a
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   104
 * single {@code CertPath} object (or more than one) with no
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   105
 * ill effects. This is also true for the {@code List} returned by
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   106
 * {@code CertPath.getCertificates}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
 * <p>
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   108
 * Requiring {@code CertPath} objects to be immutable and thread-safe
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
 * allows them to be passed around to various pieces of code without worrying
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
 * about coordinating access.  Providing this thread-safety is
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   111
 * generally not difficult, since the {@code CertPath} and
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   112
 * {@code List} objects in question are immutable.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
 * @see CertificateFactory
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
 * @see CertPathBuilder
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
 * @author      Yassir Elley
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
 * @since       1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
public abstract class CertPath implements Serializable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
57950
4612a3cfb927 8229999: Apply java.io.Serial annotations to security types in java.base
darcy
parents: 47216
diff changeset
   122
    @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    private static final long serialVersionUID = 6068470306649138683L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    private String type;        // the type of certificates in this chain
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    /**
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   128
     * Creates a {@code CertPath} of the specified type.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     * This constructor is protected because most users should use a
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   131
     * {@code CertificateFactory} to create {@code CertPath}s.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     * @param type the standard name of the type of
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   134
     * {@code Certificate}s in this path
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    protected CertPath(String type) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        this.type = type;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    /**
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   141
     * Returns the type of {@code Certificate}s in this certification
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * path. This is the same string that would be returned by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * {@link java.security.cert.Certificate#getType() cert.getType()}
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   144
     * for all {@code Certificate}s in the certification path.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     *
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   146
     * @return the type of {@code Certificate}s in this certification
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     * path (never null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
    public String getType() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        return type;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     * Returns an iteration of the encodings supported by this certification
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     * path, with the default encoding first. Attempts to modify the returned
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   156
     * {@code Iterator} via its {@code remove} method result in an
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   157
     * {@code UnsupportedOperationException}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     *
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   159
     * @return an {@code Iterator} over the names of the supported
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     *         encodings (as Strings)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    public abstract Iterator<String> getEncodings();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     * Compares this certification path for equality with the specified
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   166
     * object. Two {@code CertPath}s are equal if and only if their
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   167
     * types are equal and their certificate {@code List}s (and by
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   168
     * implication the {@code Certificate}s in those {@code List}s)
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   169
     * are equal. A {@code CertPath} is never equal to an object that is
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   170
     * not a {@code CertPath}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * This algorithm is implemented by this method. If it is overridden,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * the behavior specified here must be maintained.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     * @param other the object to test for equality with this certification path
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * @return true if the specified object is equal to this certification path,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * false otherwise
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
    public boolean equals(Object other) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        if (this == other)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        if (! (other instanceof CertPath))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
        CertPath otherCP = (CertPath) other;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
        if (! otherCP.getType().equals(type))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
        List<? extends Certificate> thisCertList = this.getCertificates();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        List<? extends Certificate> otherCertList = otherCP.getCertificates();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
        return(thisCertList.equals(otherCertList));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     * Returns the hashcode for this certification path. The hash code of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     * a certification path is defined to be the result of the following
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     * calculation:
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   199
     * <pre>{@code
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     *  hashCode = path.getType().hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     *  hashCode = 31*hashCode + path.getCertificates().hashCode();
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   202
     * }</pre>
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   203
     * This ensures that {@code path1.equals(path2)} implies that
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   204
     * {@code path1.hashCode()==path2.hashCode()} for any two certification
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   205
     * paths, {@code path1} and {@code path2}, as required by the
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   206
     * general contract of {@code Object.hashCode}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     * @return the hashcode value for this certification path
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
    public int hashCode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
        int hashCode = type.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
        hashCode = 31*hashCode + getCertificates().hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
        return hashCode;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     * Returns a string representation of this certification path.
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   218
     * This calls the {@code toString} method on each of the
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   219
     * {@code Certificate}s in the path.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     * @return a string representation of this certification path
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
    public String toString() {
24969
afa6934dd8e8 8041679: Replace uses of StringBuffer with StringBuilder within core library classes
psandoz
parents: 18551
diff changeset
   224
        StringBuilder sb = new StringBuilder();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
        Iterator<? extends Certificate> stringIterator =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
                                        getCertificates().iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
        sb.append("\n" + type + " Cert Path: length = "
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
            + getCertificates().size() + ".\n");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
        sb.append("[\n");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
        int i = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        while (stringIterator.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
            sb.append("=========================================="
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
                + "===============Certificate " + i + " start.\n");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
            Certificate stringCert = stringIterator.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
            sb.append(stringCert.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
            sb.append("\n========================================"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
                + "=================Certificate " + i + " end.\n\n\n");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
            i++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
        sb.append("\n]");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
        return sb.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     * Returns the encoded form of this certification path, using the default
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     * encoding.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     * @return the encoded bytes
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 57950
diff changeset
   251
     * @throws    CertificateEncodingException if an encoding error occurs
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
    public abstract byte[] getEncoded()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
        throws CertificateEncodingException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
     * Returns the encoded form of this certification path, using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     * specified encoding.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     * @param encoding the name of the encoding to use
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     * @return the encoded bytes
58242
94bb65cb37d3 8230648: Replace @exception tag with @throws in java.base
jboes
parents: 57950
diff changeset
   262
     * @throws    CertificateEncodingException if an encoding error occurs or
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     *   the encoding requested is not supported
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
    public abstract byte[] getEncoded(String encoding)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
        throws CertificateEncodingException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     * Returns the list of certificates in this certification path.
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   270
     * The {@code List} returned must be immutable and thread-safe.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     *
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   272
     * @return an immutable {@code List} of {@code Certificate}s
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     *         (may be empty, but not null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
    public abstract List<? extends Certificate> getCertificates();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
    /**
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   278
     * Replaces the {@code CertPath} to be serialized with a
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   279
     * {@code CertPathRep} object.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
     *
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   281
     * @return the {@code CertPathRep} to be serialized
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     *
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   283
     * @throws ObjectStreamException if a {@code CertPathRep} object
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     * representing this certification path could not be created
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     */
57950
4612a3cfb927 8229999: Apply java.io.Serial annotations to security types in java.base
darcy
parents: 47216
diff changeset
   286
    @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
    protected Object writeReplace() throws ObjectStreamException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
            return new CertPathRep(type, getEncoded());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
        } catch (CertificateException ce) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
            NotSerializableException nse =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
                new NotSerializableException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
                    ("java.security.cert.CertPath: " + type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
            nse.initCause(ce);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
            throw nse;
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
    /**
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   300
     * Alternate {@code CertPath} class for serialization.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
    protected static class CertPathRep implements Serializable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
57950
4612a3cfb927 8229999: Apply java.io.Serial annotations to security types in java.base
darcy
parents: 47216
diff changeset
   305
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
        private static final long serialVersionUID = 3015633072427920915L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
        /** The Certificate type */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
        private String type;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
        /** The encoded form of the cert path */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
        private byte[] data;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
        /**
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   314
         * Creates a {@code CertPathRep} with the specified
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
         * type and encoded form of a certification path.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
         *
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   317
         * @param type the standard name of a {@code CertPath} type
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
         * @param data the encoded form of the certification path
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
        protected CertPathRep(String type, byte[] data) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
            this.type = type;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
            this.data = data;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
        /**
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   326
         * Returns a {@code CertPath} constructed from the type and data.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
         *
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   328
         * @return the resolved {@code CertPath} object
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
         *
18551
882a3948c6e6 8017325: Cleanup of the javadoc <code> tag in java.security.cert
juh
parents: 9035
diff changeset
   330
         * @throws ObjectStreamException if a {@code CertPath} could not
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
         * be constructed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
         */
57950
4612a3cfb927 8229999: Apply java.io.Serial annotations to security types in java.base
darcy
parents: 47216
diff changeset
   333
        @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
        protected Object readResolve() throws ObjectStreamException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
                CertificateFactory cf = CertificateFactory.getInstance(type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
                return cf.generateCertPath(new ByteArrayInputStream(data));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
            } catch (CertificateException ce) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
                NotSerializableException nse =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
                    new NotSerializableException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
                        ("java.security.cert.CertPath: " + type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
                nse.initCause(ce);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
                throw nse;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
}