Generates an X.509 certificate revocation list (CRL) object and initializes it with the data read from the given input stream <code>is</code>.
Returns a (possibly empty) collection view of X.509 CRLs read from the given input stream <code>is</code>.
Generates an X.509 certificate object and initializes it with the data read from the input stream <code>inputStream</code>.
Returns a (possibly empty) collection view of X.509 certificates read from the given input stream <code>is</code>.
Return an interned X509CertImpl for the given certificate. If the given X509Certificate or X509CertImpl is already present in the cert cache, the cached object is returned. Otherwise, if it is a X509Certificate, it is first converted to a X509CertImpl. Then the X509CertImpl is added to the cache and returned.
Return an interned X509CRLImpl for the given certificate. For more information, see intern(X509Certificate).
Generates a certificate object and initializes it with the data read from the input stream {@code inStream}.
Generates a {@code CertPath} object and initializes it with the data read from the {@code InputStream} inStream. The data is assumed to be in the default encoding.
Generates a {@code CertPath} object and initializes it with the data read from the {@code InputStream} inStream. The data is assumed to be in the specified encoding.
Generates a {@code CertPath} object and initializes it with a {@code List} of {@code Certificate}s. <p> The certificates supplied must be of a type supported by the {@code CertificateFactory}. They will be copied out of the supplied {@code List} object.
Returns an iteration of the {@code CertPath} encodings supported by this certificate factory, with the default encoding first. See the CertPath Encodings section in the <a href= "{@docRoot}/../technotes/guides/security/StandardNames.html#CertPathEncodings"> Java Cryptography Architecture Standard Algorithm Name Documentation</a> for information about standard encoding names. <p> Attempts to modify the returned {@code Iterator} via its {@code remove} method result in an {@code UnsupportedOperationException}.
Returns a (possibly empty) collection view of the certificates read from the given input stream {@code inStream}.
Generates a certificate revocation list (CRL) object and initializes it with the data read from the input stream {@code inStream}.
Returns a (possibly empty) collection view of the CRLs read from the given input stream {@code inStream}.
@see java.security.cert.CertificateFactorySpi @see java.security.cert.Certificate @see java.security.cert.CertPath @see java.security.cert.CRL @see java.security.cert.X509Certificate @see java.security.cert.X509CRL @see sun.security.x509.X509CertImpl @see sun.security.x509.X509CRLImpl
This class defines a certificate factory for X.509 v3 certificates & certification paths, and X.509 v2 certificate revocation lists (CRLs).
@author Jan Luehe @author Hemma Prafullchandra @author Sean Mullan