Name

Class java.security.cert.CertificateFactorySpi

Synopsis

This is the service provider interface used to define a certificate factory. It is responsible for decoding certificates and certificate revocation lists read from the given input stream.

Class Definition

public abstract class java.security.cert.CertificateFactorySpi
    extends java.lang.Object {

    // Constructors
    public CertificateFactorySpi(  );

    // Instance Methods
    public abstract CRL engineGenerateCRL(InputStream);
    public abstract Collection engineGenerateCRLs(InputStream);
    public abstract Certificate engineGenerateCertificate(InputStream);
    public abstract Collection engineGenerateCertificates(InputStream);
}

Get Java Security, 2nd Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.