Method Summary |
|
public CRL | engineGenerateCRL(InputStream is) Generates an X.509 certificate revocation list (CRL) object and
initializes it with the data read from the given input stream
is .
Parameters: is - an input stream with the CRL data. |
public Collection | engineGenerateCRLs(InputStream is) Returns a (possibly empty) collection view of X.509 CRLs read
from the given input stream is .
Parameters: is - the input stream with the CRLs. |
public CertPath | engineGenerateCertPath(InputStream inStream) Generates a CertPath object and initializes it with
the data read from the InputStream inStream. |
public CertPath | engineGenerateCertPath(InputStream inStream, String encoding) Generates a CertPath object and initializes it with
the data read from the InputStream inStream. |
public CertPath | engineGenerateCertPath(List certificates) Generates a CertPath object and initializes it with
a List of Certificate s.
The certificates supplied must be of a type supported by the
CertificateFactory . |
public Certificate | engineGenerateCertificate(InputStream is) Generates an X.509 certificate object and initializes it with
the data read from the input stream is .
Parameters: is - an input stream with the certificate data. |
public Collection | engineGenerateCertificates(InputStream is) Returns a (possibly empty) collection view of X.509 certificates read
from the given input stream is .
Parameters: is - the input stream with the certificates. |
public Iterator | engineGetCertPathEncodings() Returns an iteration of the CertPath encodings supported
by this certificate factory, with the default encoding first. |
public static synchronized X509CertImpl | intern(X509Certificate c) 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. |
public static synchronized X509CRLImpl | intern(X509CRL c) Return an interned X509CRLImpl for the given certificate. |