Example usage for Java java.security.cert CertificateFactory fields, constructors, methods, implement or subclass
The text is from its open source code.
Certificate | generateCertificate(InputStream inStream) Generates a certificate object and initializes it with the data read from the input stream inStream . |
Collection extends Certificate> | generateCertificates(InputStream inStream) Returns a (possibly empty) collection view of the certificates read from the given input stream inStream . |
CertPath | generateCertPath(InputStream inStream) Generates a CertPath object and initializes it with the data read from the InputStream inStream. |
CertPath | generateCertPath(List extends Certificate> certificates) Generates a CertPath object and initializes it with a List of Certificate s. |
CertPath | generateCertPath(InputStream inStream, String encoding) Generates a CertPath object and initializes it with the data read from the InputStream inStream. |
CRL | generateCRL(InputStream inStream) Generates a certificate revocation list (CRL) object and initializes it with the data read from the input stream inStream . |
Collection extends CRL> | generateCRLs(InputStream inStream) Returns a (possibly empty) collection view of the CRLs read from the given input stream inStream . |
Class> | getClass() Returns the runtime class of this Object . |
CertificateFactory | getInstance(String type) Returns a certificate factory object that implements the specified certificate type. |
CertificateFactory | getInstance(String type, String provider) Returns a certificate factory object for the specified certificate type. |
CertificateFactory | getInstance(String type, Provider provider) Returns a certificate factory object for the specified certificate type. |
Provider | getProvider() Returns the provider of this certificate factory. |