jdk/src/share/classes/javax/security/cert/X509Certificate.java
author xdono
Wed, 02 Jul 2008 12:55:45 -0700
changeset 715 f16baef3a20e
parent 90 12ba8f0d1494
child 5506 202f599c92aa
permissions -rw-r--r--
6719955: Update copyright year Summary: Update copyright year for files that have been modified in 2008 Reviewed-by: ohair, tbell
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
715
f16baef3a20e 6719955: Update copyright year
xdono
parents: 90
diff changeset
     2
 * Copyright 1997-2008 Sun Microsystems, Inc.  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
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
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
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
package javax.security.cert;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.io.InputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.lang.Class;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.lang.reflect.Constructor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.lang.reflect.InvocationTargetException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.security.Security;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.math.BigInteger;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.security.AccessController;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.security.Principal;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import java.security.PrivilegedAction;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import java.security.PublicKey;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import java.util.BitSet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
import java.util.Date;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * Abstract class for X.509 v1 certificates. This provides a standard
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * way to access all the version 1 attributes of an X.509 certificate.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * Attributes that are specific to X.509 v2 or v3 are not available
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * through this interface. Future API evolution will provide full access to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * complete X.509 v3 attributes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * The basic X.509 format was defined by
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * ISO/IEC and ANSI X9 and is described below in ASN.1:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * Certificate  ::=  SEQUENCE  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 *     tbsCertificate       TBSCertificate,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 *     signatureAlgorithm   AlgorithmIdentifier,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 *     signature            BIT STRING  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * These certificates are widely used to support authentication and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * other functionality in Internet security systems. Common applications
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * include Privacy Enhanced Mail (PEM), Transport Layer Security (SSL),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * code signing for trusted software distribution, and Secure Electronic
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * Transactions (SET).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * These certificates are managed and vouched for by <em>Certificate
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * Authorities</em> (CAs). CAs are services which create certificates by
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * placing data in the X.509 standard format and then digitally signing
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * that data. CAs act as trusted third parties, making introductions
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * between principals who have no direct knowledge of each other.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * CA certificates are either signed by themselves, or by some other
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * CA such as a "root" CA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 * The ASN.1 definition of <code>tbsCertificate</code> is:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 * TBSCertificate  ::=  SEQUENCE  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 *     version         [0]  EXPLICIT Version DEFAULT v1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 *     serialNumber         CertificateSerialNumber,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 *     signature            AlgorithmIdentifier,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 *     issuer               Name,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 *     validity             Validity,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 *     subject              Name,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 *     subjectPublicKeyInfo SubjectPublicKeyInfo,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 *     }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 * Here is sample code to instantiate an X.509 certificate:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 * InputStream inStream = new FileInputStream("fileName-of-cert");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 * X509Certificate cert = X509Certificate.getInstance(inStream);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 * inStream.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 * OR
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 * byte[] certData = &lt;certificate read from a file, say&gt;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 * X509Certificate cert = X509Certificate.getInstance(certData);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 * In either case, the code that instantiates an X.509 certificate
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 * consults the Java security properties file to locate the actual
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
 * implementation or instantiates a default implementation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
 * The Java security properties file is located in the file named
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
 * &lt;JAVA_HOME&gt;/lib/security/java.security.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
 * &lt;JAVA_HOME&gt; refers to the value of the java.home system property,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
 * and specifies the directory where the JRE is installed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
 * In the Security properties file, a default implementation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
 * for X.509 v1 may be given such as:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
 * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
 * cert.provider.x509v1=com.sun.security.cert.internal.x509.X509V1CertImpl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
 * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
 * The value of this <code>cert.provider.x509v1</code> property has to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
 * changed to instatiate another implementation. If this security
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
 * property is not set, a default implementation will be used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
 * Currently, due to possible security restrictions on access to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
 * Security properties, this value is looked up and cached at class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
 * initialization time and will fallback on a default implementation if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
 * the Security property is not accessible.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
 * <p><em>Note: The classes in the package <code>javax.security.cert</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
 * exist for compatibility with earlier versions of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
 * Java Secure Sockets Extension (JSSE). New applications should instead
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
 * use the standard Java SE certificate classes located in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
 * <code>java.security.cert</code>.</em></p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
 * @author Hemma Prafullchandra
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
 * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
 * @see Certificate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
 * @see java.security.cert.X509Extension
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
public abstract class X509Certificate extends Certificate {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     * Constant to lookup in the Security properties file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     * In the Security properties file the default implementation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * for X.509 v3 is given as:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * cert.provider.x509v1=com.sun.security.cert.internal.x509.X509V1CertImpl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    private static final String X509_PROVIDER = "cert.provider.x509v1";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    private static String X509Provider;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        X509Provider = AccessController.doPrivileged(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
            new PrivilegedAction<String>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
                public String run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
                    return Security.getProperty(X509_PROVIDER);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
            }
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
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     * Instantiates an X509Certificate object, and initializes it with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     * the data read from the input stream <code>inStream</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * The implementation (X509Certificate is an abstract class) is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * provided by the class specified as the value of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * <code>cert.provider.x509v1</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * property in the security properties file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     * <p>Note: Only one DER-encoded
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     * certificate is expected to be in the input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     * Also, all X509Certificate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     * subclasses must provide a constructor of the form:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * <code><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * public &lt;subClass&gt;(InputStream inStream) ...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     * </pre></code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     * @param inStream an input stream with the data to be read to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     *        initialize the certificate.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * @return an X509Certificate object initialized with the data
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     *         from the input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     * @exception CertificateException if a class initialization
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     *            or certificate parsing error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
    public static final X509Certificate getInstance(InputStream inStream)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    throws CertificateException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        return getInst((Object)inStream);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     * Instantiates an X509Certificate object, and initializes it with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * the specified byte array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     * The implementation (X509Certificate is an abstract class) is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     * provided by the class specified as the value of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     * <code>cert.provider.x509v1</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     * property in the security properties file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     * <p>Note: All X509Certificate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     * subclasses must provide a constructor of the form:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     * <code><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     * public &lt;subClass&gt;(InputStream inStream) ...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     * </pre></code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     * @param certData a byte array containing the DER-encoded
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     *        certificate.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     * @return an X509Certificate object initialized with the data
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     *         from <code>certData</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * @exception CertificateException if a class initialization
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     *            or certificate parsing error occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
    public static final X509Certificate getInstance(byte[] certData)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    throws CertificateException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
        return getInst((Object)certData);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
    private static final X509Certificate getInst(Object value)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
    throws CertificateException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
         * This turns out not to work for now. To run under JDK1.2 we would
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
         * need to call beginPrivileged() but we can't do that and run
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
         * under JDK1.1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
        String className = X509Provider;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        if (className == null || className.length() == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
            // shouldn't happen, but assume corrupted properties file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
            // provide access to sun implementation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
            className = "com.sun.security.cert.internal.x509.X509V1CertImpl";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
            Class[] params = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
            if (value instanceof InputStream) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
                params = new Class[] { InputStream.class };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
            } else if (value instanceof byte[]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
                params = new Class[] { value.getClass() };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
            } else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
                throw new CertificateException("Unsupported argument type");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
            Class<?> certClass = Class.forName(className);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
            // get the appropriate constructor and instantiate it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
            Constructor<?> cons = certClass.getConstructor(params);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
            // get a new instance
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
            Object obj = cons.newInstance(new Object[] {value});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
            return (X509Certificate)obj;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
        } catch (ClassNotFoundException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
          throw new CertificateException("Could not find class: " + e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
        } catch (IllegalAccessException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
          throw new CertificateException("Could not access class: " + e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
        } catch (InstantiationException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
          throw new CertificateException("Problems instantiating: " + e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
        } catch (InvocationTargetException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
          throw new CertificateException("InvocationTargetException: "
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
                                         + e.getTargetException());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
        } catch (NoSuchMethodException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
          throw new CertificateException("Could not find class method: "
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
                                          + e.getMessage());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     * Checks that the certificate is currently valid. It is if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     * the current date and time are within the validity period given in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
     * certificate.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     * The validity period consists of two date/time values:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
     * the first and last dates (and times) on which the certificate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     * is valid. It is defined in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     * ASN.1 as:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     * validity             Validity<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     * Validity ::= SEQUENCE {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     *     notBefore      CertificateValidityDate,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     *     notAfter       CertificateValidityDate }<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     * CertificateValidityDate ::= CHOICE {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     *     utcTime        UTCTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     *     generalTime    GeneralizedTime }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     * @exception CertificateExpiredException if the certificate has expired.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     * @exception CertificateNotYetValidException if the certificate is not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     *            yet valid.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
    public abstract void checkValidity()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
        throws CertificateExpiredException, CertificateNotYetValidException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
     * Checks that the specified date is within the certificate's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
     * validity period. In other words, this determines whether the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     * certificate would be valid at the specified date/time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     * @param date the Date to check against to see if this certificate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     *        is valid at that date/time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     * @exception CertificateExpiredException if the certificate has expired
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     *            with respect to the <code>date</code> supplied.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     * @exception CertificateNotYetValidException if the certificate is not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     *            yet valid with respect to the <code>date</code> supplied.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     * @see #checkValidity()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
    public abstract void checkValidity(Date date)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
        throws CertificateExpiredException, CertificateNotYetValidException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
     * Gets the <code>version</code> (version number) value from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
     * certificate. The ASN.1 definition for this is:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
     * version         [0]  EXPLICIT Version DEFAULT v1<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
     * Version  ::=  INTEGER  {  v1(0), v2(1), v3(2)  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
     * @return the version number from the ASN.1 encoding, i.e. 0, 1 or 2.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
    public abstract int getVersion();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     * Gets the <code>serialNumber</code> value from the certificate.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     * The serial number is an integer assigned by the certification
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     * authority to each certificate. It must be unique for each
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     * certificate issued by a given CA (i.e., the issuer name and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     * serial number identify a unique certificate).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     * The ASN.1 definition for this is:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     * serialNumber     CertificateSerialNumber<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
     * CertificateSerialNumber  ::=  INTEGER
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     * @return the serial number.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
    public abstract BigInteger getSerialNumber();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     * Gets the <code>issuer</code> (issuer distinguished name) value from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
     * the certificate. The issuer name identifies the entity that signed (and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     * issued) the certificate.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     * <p>The issuer name field contains an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     * X.500 distinguished name (DN).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     * The ASN.1 definition for this is:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     * issuer    Name<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
     * Name ::= CHOICE { RDNSequence }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
     * RDNSequence ::= SEQUENCE OF RelativeDistinguishedName
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
     * RelativeDistinguishedName ::=
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
     *     SET OF AttributeValueAssertion
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     * AttributeValueAssertion ::= SEQUENCE {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     *                               AttributeType,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     *                               AttributeValue }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     * AttributeType ::= OBJECT IDENTIFIER
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     * AttributeValue ::= ANY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     * The <code>Name</code> describes a hierarchical name composed of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     * attributes, such as country name, and corresponding values, such as US.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
     * The type of the <code>AttributeValue</code> component is determined by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
     * the <code>AttributeType</code>; in general it will be a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
     * <code>directoryString</code>. A <code>directoryString</code> is usually
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     * one of <code>PrintableString</code>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     * <code>TeletexString</code> or <code>UniversalString</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     * @return a Principal whose name is the issuer distinguished name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
    public abstract Principal getIssuerDN();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     * Gets the <code>subject</code> (subject distinguished name) value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     * from the certificate.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
     * The ASN.1 definition for this is:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     * subject    Name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     *
90
12ba8f0d1494 6634644: broken fragment, should use @link
weijun
parents: 2
diff changeset
   366
     * <p>See {@link #getIssuerDN() getIssuerDN} for <code>Name</code>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
     * and other relevant definitions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
     * @return a Principal whose name is the subject name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
     * @see #getIssuerDN()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
    public abstract Principal getSubjectDN();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     * Gets the <code>notBefore</code> date from the validity period of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     * the certificate.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     * The relevant ASN.1 definitions are:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     * validity             Validity<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
     * Validity ::= SEQUENCE {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     *     notBefore      CertificateValidityDate,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
     *     notAfter       CertificateValidityDate }<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
     * CertificateValidityDate ::= CHOICE {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
     *     utcTime        UTCTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
     *     generalTime    GeneralizedTime }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     * @return the start date of the validity period.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     * @see #checkValidity()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
    public abstract Date getNotBefore();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     * Gets the <code>notAfter</code> date from the validity period of
90
12ba8f0d1494 6634644: broken fragment, should use @link
weijun
parents: 2
diff changeset
   396
     * the certificate. See {@link #getNotBefore() getNotBefore}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     * for relevant ASN.1 definitions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     * @return the end date of the validity period.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
     * @see #checkValidity()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
    public abstract Date getNotAfter();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     * Gets the signature algorithm name for the certificate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
     * signature algorithm. An example is the string "SHA-1/DSA".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
     * The ASN.1 definition for this is:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
     * signatureAlgorithm   AlgorithmIdentifier<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
     * AlgorithmIdentifier  ::=  SEQUENCE  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
     *     algorithm               OBJECT IDENTIFIER,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
     *     parameters              ANY DEFINED BY algorithm OPTIONAL  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
     *                             -- contains a value of the type
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
     *                             -- registered for use with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
     *                             -- algorithm object identifier value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
     * <p>The algorithm name is determined from the <code>algorithm</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
     * OID string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
     * @return the signature algorithm name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
    public abstract String getSigAlgName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     * Gets the signature algorithm OID string from the certificate.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
     * An OID is represented by a set of positive whole numbers separated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     * by periods.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
     * For example, the string "1.2.840.10040.4.3" identifies the SHA-1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
     * with DSA signature algorithm, as per the PKIX part I.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
     *
90
12ba8f0d1494 6634644: broken fragment, should use @link
weijun
parents: 2
diff changeset
   432
     * <p>See {@link #getSigAlgName() getSigAlgName} for
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
     * relevant ASN.1 definitions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
     * @return the signature algorithm OID string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
    public abstract String getSigAlgOID();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
     * Gets the DER-encoded signature algorithm parameters from this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     * certificate's signature algorithm. In most cases, the signature
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
     * algorithm parameters are null; the parameters are usually
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
     * supplied with the certificate's public key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
     *
90
12ba8f0d1494 6634644: broken fragment, should use @link
weijun
parents: 2
diff changeset
   445
     * <p>See {@link #getSigAlgName() getSigAlgName} for
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
     * relevant ASN.1 definitions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
     * @return the DER-encoded signature algorithm parameters, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
     *         null if no parameters are present.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
    public abstract byte[] getSigAlgParams();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
}