| java.security.cert.X509CRL org.bouncycastle.jce.provider.X509CRLObject
X509CRLObject | public class X509CRLObject extends X509CRL (Code) | | The following extensions are listed in RFC 2459 as relevant to CRLs
Authority Key Identifier
Issuer Alternative Name
CRL Number
Delta CRL Indicator (critical)
Issuing Distribution Point (critical)
|
getCriticalExtensionOIDs | public Set getCriticalExtensionOIDs()(Code) | | |
getExtensionValue | public byte[] getExtensionValue(String oid)(Code) | | |
getNonCriticalExtensionOIDs | public Set getNonCriticalExtensionOIDs()(Code) | | |
getRevokedCertificates | public Set getRevokedCertificates()(Code) | | |
getSigAlgParams | public byte[] getSigAlgParams()(Code) | | |
getSignature | public byte[] getSignature()(Code) | | |
getVersion | public int getVersion()(Code) | | |
hasUnsupportedCriticalExtension | public boolean hasUnsupportedCriticalExtension()(Code) | | Will return true if any extensions are present and marked
as critical as we currently dont handle any extensions!
|
isRevoked | public boolean isRevoked(Certificate cert)(Code) | | Checks whether the given certificate is on this CRL.
Parameters: cert - the certificate to check for. true if the given certificate is on this CRL,false otherwise. |
toString | public String toString()(Code) | | Returns a string representation of this CRL.
a string representation of this CRL. |
|
|