Methods Summary |
---|
public abstract java.security.cert.CRL | engineGenerateCRL(java.io.InputStream inStream)Generates and initializes a Certificate Revocation List (CRL) from
the provided input stream.
|
public abstract java.util.Collection | engineGenerateCRLs(java.io.InputStream inStream)Generates and initializes a collection of Certificate Revocation
List (CRL) from the provided input stream.
|
public java.security.cert.CertPath | engineGenerateCertPath(java.io.InputStream inStream)Generates a {@code CertPath} from the provided {@code InputStream}. The
default encoding scheme is applied.
throw new UnsupportedOperationException(
Messages.getString("security.70")); //$NON-NLS-1$
|
public java.security.cert.CertPath | engineGenerateCertPath(java.io.InputStream inStream, java.lang.String encoding)Generates a {@code CertPath} from the provided {@code
InputStream} in the specified encoding.
throw new UnsupportedOperationException(
Messages.getString("security.71")); //$NON-NLS-1$
|
public java.security.cert.CertPath | engineGenerateCertPath(java.util.List certificates)Generates a {@code CertPath} from the provided list of certificates. The
encoding is the default encoding.
throw new UnsupportedOperationException(
Messages.getString("security.72")); //$NON-NLS-1$
|
public abstract java.security.cert.Certificate | engineGenerateCertificate(java.io.InputStream inStream)Generates and initializes a {@code Certificate} from the provided input
stream.
|
public abstract java.util.Collection | engineGenerateCertificates(java.io.InputStream inStream)Generates and initializes a collection of certificates from the provided
input stream.
|
public java.util.Iterator | engineGetCertPathEncodings()Returns an {@code Iterator} over the supported {@code CertPath} encodings
(as Strings). The first element is the default encoding.
throw new UnsupportedOperationException(
Messages.getString("security.73")); //$NON-NLS-1$
|