jdk/src/share/classes/java/security/cert/CertStore.java
author ohair
Wed, 06 Apr 2011 22:06:11 -0700
changeset 9035 1255eb81cc2f
parent 8152 94e5966bdf22
child 14775 2ed01c760aea
permissions -rw-r--r--
7033660: Update copyright year to 2011 on any files changed in 2011 Reviewed-by: dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
9035
1255eb81cc2f 7033660: Update copyright year to 2011 on any files changed in 2011
ohair
parents: 8152
diff changeset
     2
 * Copyright (c) 2000, 2011, 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.security.AccessController;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.security.InvalidAlgorithmParameterException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.security.NoSuchAlgorithmException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.security.NoSuchProviderException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.security.PrivilegedAction;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.security.Provider;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.security.Security;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.util.Collection;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import sun.security.jca.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import sun.security.jca.GetInstance.Instance;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * A class for retrieving <code>Certificate</code>s and <code>CRL</code>s
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * from a repository.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * This class uses a provider-based architecture.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * To create a <code>CertStore</code>, call one of the static
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * <code>getInstance</code> methods, passing in the type of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * <code>CertStore</code> desired, any applicable initialization parameters
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * and optionally the name of the provider desired.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * Once the <code>CertStore</code> has been created, it can be used to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * retrieve <code>Certificate</code>s and <code>CRL</code>s by calling its
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * {@link #getCertificates(CertSelector selector) getCertificates} and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * {@link #getCRLs(CRLSelector selector) getCRLs} methods.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * Unlike a {@link java.security.KeyStore KeyStore}, which provides access
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * to a cache of private keys and trusted certificates, a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * <code>CertStore</code> is designed to provide access to a potentially
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * vast repository of untrusted certificates and CRLs. For example, an LDAP
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * implementation of <code>CertStore</code> provides access to certificates
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * and CRLs stored in one or more directories using the LDAP protocol and the
8152
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
    61
 * schema as defined in the RFC service attribute.
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
    62
 *
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
    63
 * <p> Every implementation of the Java platform is required to support the
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
    64
 * following standard <code>CertStore</code> type:
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
    65
 * <ul>
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
    66
 * <li><tt>Collection</tt></li>
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
    67
 * </ul>
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
    68
 * This type is described in the <a href=
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
    69
 * "{@docRoot}/../technotes/guides/security/StandardNames.html#CertStore">
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
    70
 * CertStore section</a> of the
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
    71
 * Java Cryptography Architecture Standard Algorithm Name Documentation.
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
    72
 * 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
    73
 * other types are supported.
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
    74
 *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 * <b>Concurrent Access</b>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 * All public methods of <code>CertStore</code> objects must be thread-safe.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 * That is, multiple threads may concurrently invoke these methods on a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 * single <code>CertStore</code> object (or more than one) with no
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 * ill effects. This allows a <code>CertPathBuilder</code> to search for a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 * CRL while simultaneously searching for further certificates, for instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 * The static methods of this class are also guaranteed to be thread-safe.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 * Multiple threads may concurrently invoke the static methods defined in
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 * this class with no ill effects.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 * @since       1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 * @author      Sean Mullan, Steve Hanna
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
public class CertStore {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     * Constant to lookup in the Security properties file to determine
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
     * the default certstore type. In the Security properties file, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * default certstore type is given as:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * certstore.type=LDAP
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    private static final String CERTSTORE_TYPE = "certstore.type";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    private CertStoreSpi storeSpi;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    private Provider provider;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    private String type;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    private CertStoreParameters params;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     * Creates a <code>CertStore</code> object of the given type, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * encapsulates the given provider implementation (SPI object) in it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * @param storeSpi the provider implementation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     * @param provider the provider
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * @param type the type
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * @param params the initialization parameters (may be <code>null</code>)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    protected CertStore(CertStoreSpi storeSpi, Provider provider,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
                        String type, CertStoreParameters params) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        this.storeSpi = storeSpi;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
        this.provider = provider;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        this.type = type;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        if (params != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
            this.params = (CertStoreParameters) params.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     * Returns a <code>Collection</code> of <code>Certificate</code>s that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * match the specified selector. If no <code>Certificate</code>s
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     * match the selector, an empty <code>Collection</code> will be returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * For some <code>CertStore</code> types, the resulting
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     * <code>Collection</code> may not contain <b>all</b> of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * <code>Certificate</code>s that match the selector. For instance,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * an LDAP <code>CertStore</code> may not search all entries in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     * directory. Instead, it may just search entries that are likely to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     * contain the <code>Certificate</code>s it is looking for.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * Some <code>CertStore</code> implementations (especially LDAP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * <code>CertStore</code>s) may throw a <code>CertStoreException</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * unless a non-null <code>CertSelector</code> is provided that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     * includes specific criteria that can be used to find the certificates.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * Issuer and/or subject names are especially useful criteria.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * @param selector A <code>CertSelector</code> used to select which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     *  <code>Certificate</code>s should be returned. Specify <code>null</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     *  to return all <code>Certificate</code>s (if supported).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     * @return A <code>Collection</code> of <code>Certificate</code>s that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     *         match the specified selector (never <code>null</code>)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     * @throws CertStoreException if an exception occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
    public final Collection<? extends Certificate> getCertificates
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
            (CertSelector selector) throws CertStoreException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        return storeSpi.engineGetCertificates(selector);
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
     * Returns a <code>Collection</code> of <code>CRL</code>s that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     * match the specified selector. If no <code>CRL</code>s
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * match the selector, an empty <code>Collection</code> will be returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * For some <code>CertStore</code> types, the resulting
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * <code>Collection</code> may not contain <b>all</b> of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * <code>CRL</code>s that match the selector. For instance,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     * an LDAP <code>CertStore</code> may not search all entries in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     * directory. Instead, it may just search entries that are likely to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     * contain the <code>CRL</code>s it is looking for.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * Some <code>CertStore</code> implementations (especially LDAP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * <code>CertStore</code>s) may throw a <code>CertStoreException</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     * unless a non-null <code>CRLSelector</code> is provided that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * includes specific criteria that can be used to find the CRLs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     * Issuer names and/or the certificate to be checked are especially useful.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * @param selector A <code>CRLSelector</code> used to select which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     *  <code>CRL</code>s should be returned. Specify <code>null</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     *  to return all <code>CRL</code>s (if supported).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     * @return A <code>Collection</code> of <code>CRL</code>s that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     *         match the specified selector (never <code>null</code>)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * @throws CertStoreException if an exception occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
    public final Collection<? extends CRL> getCRLs(CRLSelector selector)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
            throws CertStoreException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        return storeSpi.engineGetCRLs(selector);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     * Returns a <code>CertStore</code> object that implements the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     * <code>CertStore</code> type and is initialized with the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     * parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     * <p> This method traverses the list of registered security Providers,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     * starting with the most preferred Provider.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     * A new CertStore object encapsulating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     * CertStoreSpi implementation from the first
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     * Provider that supports the specified type is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     * <p> Note that the list of registered providers may be retrieved via
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     * the {@link Security#getProviders() Security.getProviders()} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     * <p>The <code>CertStore</code> that is returned is initialized with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     * specified <code>CertStoreParameters</code>. The type of parameters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * needed may vary between different types of <code>CertStore</code>s.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * Note that the specified <code>CertStoreParameters</code> object is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     * cloned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     * @param type the name of the requested <code>CertStore</code> type.
8152
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
   205
     * See the CertStore section in the <a href=
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
   206
     * "{@docRoot}/../technotes/guides/security/StandardNames.html#CertStore">
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
   207
     * Java Cryptography Architecture Standard Algorithm Name Documentation</a>
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
   208
     * for information about standard types.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     * @param params the initialization parameters (may be <code>null</code>).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * @return a <code>CertStore</code> object that implements the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     *          <code>CertStore</code> type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     * @throws NoSuchAlgorithmException if no Provider supports a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     *          CertStoreSpi implementation for the specified type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * @throws InvalidAlgorithmParameterException if the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     *          initialization parameters are inappropriate for this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     *          <code>CertStore</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     * @see java.security.Provider
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
    public static CertStore getInstance(String type, CertStoreParameters params)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
            throws InvalidAlgorithmParameterException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
            NoSuchAlgorithmException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
            Instance instance = GetInstance.getInstance("CertStore",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
                CertStoreSpi.class, type, params);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
            return new CertStore((CertStoreSpi)instance.impl,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
                instance.provider, type, params);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        } catch (NoSuchAlgorithmException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
            return handleException(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
    private static CertStore handleException(NoSuchAlgorithmException e)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
            throws NoSuchAlgorithmException, InvalidAlgorithmParameterException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        Throwable cause = e.getCause();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
        if (cause instanceof InvalidAlgorithmParameterException) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
            throw (InvalidAlgorithmParameterException)cause;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
        throw e;
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 a <code>CertStore</code> object that implements the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     * <code>CertStore</code> type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     * <p> A new CertStore object encapsulating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     * CertStoreSpi implementation from the specified provider
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     * is returned.  The specified provider must be registered
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     * in the security provider list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     * <p> Note that the list of registered providers may be retrieved via
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
     * the {@link Security#getProviders() Security.getProviders()} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     * <p>The <code>CertStore</code> that is returned is initialized with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
     * specified <code>CertStoreParameters</code>. The type of parameters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     * needed may vary between different types of <code>CertStore</code>s.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     * Note that the specified <code>CertStoreParameters</code> object is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     * cloned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     * @param type the requested <code>CertStore</code> type.
8152
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
   265
     * See the CertStore section in the <a href=
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
   266
     * "{@docRoot}/../technotes/guides/security/StandardNames.html#CertStore">
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
   267
     * Java Cryptography Architecture Standard Algorithm Name Documentation</a>
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
   268
     * for information about standard types.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     * @param params the initialization parameters (may be <code>null</code>).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     * @param provider the name of the provider.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     * @return a <code>CertStore</code> object that implements the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
     *          specified type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     * @throws NoSuchAlgorithmException if a CertStoreSpi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     *          implementation for the specified type is not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
     *          available from the specified provider.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
     * @throws InvalidAlgorithmParameterException if the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     *          initialization parameters are inappropriate for this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     *          <code>CertStore</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     * @throws NoSuchProviderException if the specified provider is not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     *          registered in the security provider list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     * @exception IllegalArgumentException if the <code>provider</code> is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     *          null or empty.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     * @see java.security.Provider
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
    public static CertStore getInstance(String type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
            CertStoreParameters params, String provider)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
            throws InvalidAlgorithmParameterException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
            NoSuchAlgorithmException, NoSuchProviderException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
            Instance instance = GetInstance.getInstance("CertStore",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
                CertStoreSpi.class, type, params, provider);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
            return new CertStore((CertStoreSpi)instance.impl,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
                instance.provider, type, params);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
        } catch (NoSuchAlgorithmException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
            return handleException(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     * Returns a <code>CertStore</code> object that implements the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     * <code>CertStore</code> type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     * <p> A new CertStore object encapsulating the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     * CertStoreSpi implementation from the specified Provider
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     * object is returned.  Note that the specified Provider object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     * does not have to be registered in the provider list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     * <p>The <code>CertStore</code> that is returned is initialized with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
     * specified <code>CertStoreParameters</code>. The type of parameters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
     * needed may vary between different types of <code>CertStore</code>s.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     * Note that the specified <code>CertStoreParameters</code> object is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     * cloned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     * @param type the requested <code>CertStore</code> type.
8152
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
   323
     * See the CertStore section in the <a href=
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
   324
     * "{@docRoot}/../technotes/guides/security/StandardNames.html#CertStore">
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
   325
     * Java Cryptography Architecture Standard Algorithm Name Documentation</a>
94e5966bdf22 5001004: Required Security Algorithms need to be defined
mullan
parents: 5506
diff changeset
   326
     * for information about standard types.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     * @param params the initialization parameters (may be <code>null</code>).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     * @param provider the provider.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     * @return a <code>CertStore</code> object that implements the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     *          specified type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
     * @exception NoSuchAlgorithmException if a CertStoreSpi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
     *          implementation for the specified type is not available
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
     *          from the specified Provider object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     * @throws InvalidAlgorithmParameterException if the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     *          initialization parameters are inappropriate for this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     *          <code>CertStore</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     * @exception IllegalArgumentException if the <code>provider</code> is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     *          null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     * @see java.security.Provider
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    public static CertStore getInstance(String type, CertStoreParameters params,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
            Provider provider) throws NoSuchAlgorithmException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
            InvalidAlgorithmParameterException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
            Instance instance = GetInstance.getInstance("CertStore",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
                CertStoreSpi.class, type, params, provider);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
            return new CertStore((CertStoreSpi)instance.impl,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
                instance.provider, type, params);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
        } catch (NoSuchAlgorithmException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
            return handleException(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     * Returns the parameters used to initialize this <code>CertStore</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     * Note that the <code>CertStoreParameters</code> object is cloned before
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     * it is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     * @return the parameters used to initialize this <code>CertStore</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
     * (may be <code>null</code>)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
    public final CertStoreParameters getCertStoreParameters() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
        return (params == null ? null : (CertStoreParameters) params.clone());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     * Returns the type of this <code>CertStore</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     * @return the type of this <code>CertStore</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
    public final String getType() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
        return this.type;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
     * Returns the provider of this <code>CertStore</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
     * @return the provider of this <code>CertStore</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
    public final Provider getProvider() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
        return this.provider;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     * Returns the default <code>CertStore</code> type as specified in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     * Java security properties file, or the string &quot;LDAP&quot; if no
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     * such property exists. The Java security properties file is located in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     * the file named &lt;JAVA_HOME&gt;/lib/security/java.security.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
     * &lt;JAVA_HOME&gt; refers to the value of the java.home system property,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     * and specifies the directory where the JRE is installed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     * <p>The default <code>CertStore</code> type can be used by applications
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
     * that do not want to use a hard-coded type when calling one of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     * <code>getInstance</code> methods, and want to provide a default
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
     * <code>CertStore</code> type in case a user does not specify its own.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
     * <p>The default <code>CertStore</code> type can be changed by setting
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     * the value of the "certstore.type" security property (in the Java
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
     * security properties file) to the desired type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
     * @return the default <code>CertStore</code> type as specified in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
     * Java security properties file, or the string &quot;LDAP&quot;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
     * if no such property exists.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
    public final static String getDefaultType() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
        String cstype;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
        cstype = AccessController.doPrivileged(new PrivilegedAction<String>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
            public String run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
                return Security.getProperty(CERTSTORE_TYPE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
        });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
        if (cstype == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
            cstype = "LDAP";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
        return cstype;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
}