gnu.crypto.pki
public class X509CRLImpl extends X509CRL implements GnuPKIExtension
Constructor Summary | |
---|---|
X509CRLImpl(InputStream encoded)
Create a new X.509 CRL.
|
Method Summary | |
---|---|
boolean | equals(Object o) |
Set | getCriticalExtensionOIDs() |
byte[] | getEncoded() |
Extension | getExtension(OID oid) |
Collection | getExtensions() |
byte[] | getExtensionValue(String oid) |
Principal | getIssuerDN() |
X500Principal | getIssuerX500Principal() |
Date | getNextUpdate() |
Set | getNonCriticalExtensionOIDs() |
X509CRLEntry | getRevokedCertificate(BigInteger serialNo) |
Set | getRevokedCertificates() |
String | getSigAlgName() |
String | getSigAlgOID() |
byte[] | getSigAlgParams() |
byte[] | getSignature() |
byte[] | getTBSCertList() |
Date | getThisUpdate() |
int | getVersion() |
int | hashCode() |
boolean | hasUnsupportedCriticalExtension() |
boolean | isRevoked(Certificate cert) |
String | toString() |
void | verify(PublicKey key) |
void | verify(PublicKey key, String provider) |
Parameters: encoded The DER encoded CRL.
Throws: CRLException If the input bytes are incorrect. IOException If the input bytes cannot be read.