Class CertStore
- java.lang.Object
-
- java.security.cert.CertStore
-
public class CertStore extends java.lang.ObjectA class for retrievingCertificates andCRLs from a repository.This class uses a provider-based architecture, as described in the Java Cryptography Architecture. To create a
CertStore, call one of the staticgetInstancemethods, passing in the type ofCertStoredesired, any applicable initialization parameters and optionally the name of the provider desired.Once the
CertStorehas been created, it can be used to retrieveCertificates andCRLs by calling itsgetCertificatesandgetCRLsmethods.Unlike a
KeyStore, which provides access to a cache of private keys and trusted certificates, aCertStoreis designed to provide access to a potentially vast repository of untrusted certificates and CRLs. For example, an LDAP implementation ofCertStoreprovides access to certificates and CRLs stored in one or more directories using the LDAP protocol and the schema as defined in the RFC service attribute. See Appendix A in the Java Certification Path API Programmer's Guide for more information about standardCertStoretypes.Concurrent Access
All public methods of
CertStoreobjects must be thread-safe. That is, multiple threads may concurrently invoke these methods on a singleCertStoreobject (or more than one) with no ill effects. This allows aCertPathBuilderto search for a CRL while simultaneously searching for further certificates, for instance.The static methods of this class are also guaranteed to be thread-safe. Multiple threads may concurrently invoke the static methods defined in this class with no ill effects.
- Since:
- 1.4
-
-
Constructor Summary
Constructors Modifier Constructor and Description protectedCertStore(CertStoreSpi storeSpi, java.security.Provider provider, java.lang.String type, CertStoreParameters params)Creates aCertStoreobject of the given type, and encapsulates the given provider implementation (SPI object) in it.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method and Description java.util.Collection<? extends Certificate>getCertificates(CertSelector selector)Returns aCollectionofCertificates that match the specified selector.CertStoreParametersgetCertStoreParameters()Returns the parameters used to initialize thisCertStore.java.util.Collection<? extends CRL>getCRLs(CRLSelector selector)Returns aCollectionofCRLs that match the specified selector.static java.lang.StringgetDefaultType()Returns the defaultCertStoretype as specified in the Java security properties file, or the string "LDAP" if no such property exists.static CertStoregetInstance(java.lang.String type, CertStoreParameters params)Returns aCertStoreobject that implements the specifiedCertStoretype and is initialized with the specified parameters.static CertStoregetInstance(java.lang.String type, CertStoreParameters params, java.security.Provider provider)Returns aCertStoreobject that implements the specifiedCertStoretype.static CertStoregetInstance(java.lang.String type, CertStoreParameters params, java.lang.String provider)Returns aCertStoreobject that implements the specifiedCertStoretype.java.security.ProvidergetProvider()Returns the provider of thisCertStore.java.lang.StringgetType()Returns the type of thisCertStore.
-
-
-
Constructor Detail
-
CertStore
protected CertStore(CertStoreSpi storeSpi, java.security.Provider provider, java.lang.String type, CertStoreParameters params)
Creates aCertStoreobject of the given type, and encapsulates the given provider implementation (SPI object) in it.- Parameters:
storeSpi- the provider implementationprovider- the providertype- the typeparams- the initialization parameters (may benull)
-
-
Method Detail
-
getCertificates
public final java.util.Collection<? extends Certificate> getCertificates(CertSelector selector) throws CertStoreException
Returns aCollectionofCertificates that match the specified selector. If noCertificates match the selector, an emptyCollectionwill be returned.For some
CertStoretypes, the resultingCollectionmay not contain all of theCertificates that match the selector. For instance, an LDAPCertStoremay not search all entries in the directory. Instead, it may just search entries that are likely to contain theCertificates it is looking for.Some
CertStoreimplementations (especially LDAPCertStores) may throw aCertStoreExceptionunless a non-nullCertSelectoris provided that includes specific criteria that can be used to find the certificates. Issuer and/or subject names are especially useful criteria.- Parameters:
selector- ACertSelectorused to select whichCertificates should be returned. Specifynullto return allCertificates (if supported).- Returns:
- A
CollectionofCertificates that match the specified selector (nevernull) - Throws:
CertStoreException- if an exception occurs
-
getCRLs
public final java.util.Collection<? extends CRL> getCRLs(CRLSelector selector) throws CertStoreException
Returns aCollectionofCRLs that match the specified selector. If noCRLs match the selector, an emptyCollectionwill be returned.For some
CertStoretypes, the resultingCollectionmay not contain all of theCRLs that match the selector. For instance, an LDAPCertStoremay not search all entries in the directory. Instead, it may just search entries that are likely to contain theCRLs it is looking for.Some
CertStoreimplementations (especially LDAPCertStores) may throw aCertStoreExceptionunless a non-nullCRLSelectoris provided that includes specific criteria that can be used to find the CRLs. Issuer names and/or the certificate to be checked are especially useful.- Parameters:
selector- ACRLSelectorused to select whichCRLs should be returned. Specifynullto return allCRLs (if supported).- Returns:
- A
CollectionofCRLs that match the specified selector (nevernull) - Throws:
CertStoreException- if an exception occurs
-
getInstance
public static CertStore getInstance(java.lang.String type, CertStoreParameters params) throws java.security.NoSuchAlgorithmException, java.security.InvalidAlgorithmParameterException
Returns aCertStoreobject that implements the specifiedCertStoretype and is initialized with the specified parameters.This method traverses the list of registered security Providers, starting with the most preferred Provider. A new CertStore object encapsulating the CertStoreSpi implementation from the first Provider that supports the specified type is returned.
Note that the list of registered providers may be retrieved via the
Security.getProviders()method.The
CertStorethat is returned is initialized with the specifiedCertStoreParameters. The type of parameters needed may vary between different types ofCertStores. Note that the specifiedCertStoreParametersobject is cloned.- Parameters:
type- the name of the requestedCertStoretype. See Appendix A in the Java Certification Path API Programmer's Guide for information about standard types.params- the initialization parameters (may benull).- Returns:
- a
CertStoreobject that implements the specifiedCertStoretype. - Throws:
java.security.NoSuchAlgorithmException- if no Provider supports a CertStoreSpi implementation for the specified type.java.security.InvalidAlgorithmParameterException- if the specified initialization parameters are inappropriate for thisCertStore.- See Also:
Provider
-
getInstance
public static CertStore getInstance(java.lang.String type, CertStoreParameters params, java.lang.String provider) throws java.security.NoSuchAlgorithmException, java.security.NoSuchProviderException, java.security.InvalidAlgorithmParameterException
Returns aCertStoreobject that implements the specifiedCertStoretype.A new CertStore object encapsulating the CertStoreSpi implementation from the specified provider is returned. The specified provider must be registered in the security provider list.
Note that the list of registered providers may be retrieved via the
Security.getProviders()method.The
CertStorethat is returned is initialized with the specifiedCertStoreParameters. The type of parameters needed may vary between different types ofCertStores. Note that the specifiedCertStoreParametersobject is cloned.- Parameters:
type- the requestedCertStoretype. See Appendix A in the Java Certification Path API Programmer's Guide for information about standard types.params- the initialization parameters (may benull).provider- the name of the provider.- Returns:
- a
CertStoreobject that implements the specified type. - Throws:
java.security.NoSuchAlgorithmException- if a CertStoreSpi implementation for the specified type is not available from the specified provider.java.security.InvalidAlgorithmParameterException- if the specified initialization parameters are inappropriate for thisCertStore.java.security.NoSuchProviderException- if the specified provider is not registered in the security provider list.java.lang.IllegalArgumentException- if theprovideris null or empty.- See Also:
Provider
-
getInstance
public static CertStore getInstance(java.lang.String type, CertStoreParameters params, java.security.Provider provider) throws java.security.NoSuchAlgorithmException, java.security.InvalidAlgorithmParameterException
Returns aCertStoreobject that implements the specifiedCertStoretype.A new CertStore object encapsulating the CertStoreSpi implementation from the specified Provider object is returned. Note that the specified Provider object does not have to be registered in the provider list.
The
CertStorethat is returned is initialized with the specifiedCertStoreParameters. The type of parameters needed may vary between different types ofCertStores. Note that the specifiedCertStoreParametersobject is cloned.- Parameters:
type- the requestedCertStoretype. See Appendix A in the Java Certification Path API Programmer's Guide for information about standard types.params- the initialization parameters (may benull).provider- the provider.- Returns:
- a
CertStoreobject that implements the specified type. - Throws:
java.security.NoSuchAlgorithmException- if a CertStoreSpi implementation for the specified type is not available from the specified Provider object.java.security.InvalidAlgorithmParameterException- if the specified initialization parameters are inappropriate for thisCertStorejava.lang.IllegalArgumentException- if theprovideris null.- See Also:
Provider
-
getType
public final java.lang.String getType()
Returns the type of thisCertStore.- Returns:
- the type of this
CertStore
-
getProvider
public final java.security.Provider getProvider()
Returns the provider of thisCertStore.- Returns:
- the provider of this
CertStore
-
getDefaultType
public static final java.lang.String getDefaultType()
Returns the defaultCertStoretype as specified in the Java security properties file, or the string "LDAP" if no such property exists. The Java security properties file is located in the file named <JAVA_HOME>/lib/security/java.security. <JAVA_HOME> refers to the value of the java.home system property, and specifies the directory where the JRE is installed.The default
CertStoretype can be used by applications that do not want to use a hard-coded type when calling one of thegetInstancemethods, and want to provide a defaultCertStoretype in case a user does not specify its own.The default
CertStoretype can be changed by setting the value of the "certstore.type" security property (in the Java security properties file) to the desired type.- Returns:
- the default
CertStoretype as specified in the Java security properties file, or the string "LDAP" if no such property exists.
-
getCertStoreParameters
public final CertStoreParameters getCertStoreParameters()
Returns the parameters used to initialize thisCertStore. Note that theCertStoreParametersobject is cloned before it is returned.- Returns:
- the parameters used to initialize this
CertStore(may benull)
-
-