Package java.security.cert
Class X509CRL
- java.lang.Object
-
- java.security.cert.CRL
-
- java.security.cert.X509CRL
-
- All Implemented Interfaces:
X509Extension
public abstract class X509CRL extends CRL implements X509Extension
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedX509CRL()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description booleanequals(Object var0)abstract SetgetCriticalExtensionOIDs()abstract byte[]getEncoded()abstract byte[]getExtensionValue(String var0)abstract PrincipalgetIssuerDN()abstract DategetNextUpdate()abstract SetgetNonCriticalExtensionOIDs()abstract X509CRLEntrygetRevokedCertificate(BigInteger var0)abstract SetgetRevokedCertificates()abstract StringgetSigAlgName()abstract StringgetSigAlgOID()abstract byte[]getSigAlgParams()abstract byte[]getSignature()abstract byte[]getTBSCertList()abstract DategetThisUpdate()abstract intgetVersion()inthashCode()abstract booleanhasUnsupportedCriticalExtension()abstract voidverify(PublicKey var0)abstract voidverify(PublicKey var0, String var1)
-
-
-
Method Detail
-
getEncoded
public abstract byte[] getEncoded() throws CRLException- Throws:
CRLException
-
getIssuerDN
public abstract Principal getIssuerDN()
-
getNextUpdate
public abstract Date getNextUpdate()
-
getRevokedCertificate
public abstract X509CRLEntry getRevokedCertificate(BigInteger var0)
-
getRevokedCertificates
public abstract Set getRevokedCertificates()
-
getSigAlgName
public abstract String getSigAlgName()
-
getSigAlgOID
public abstract String getSigAlgOID()
-
getSigAlgParams
public abstract byte[] getSigAlgParams()
-
getSignature
public abstract byte[] getSignature()
-
getTBSCertList
public abstract byte[] getTBSCertList() throws CRLException- Throws:
CRLException
-
getThisUpdate
public abstract Date getThisUpdate()
-
getVersion
public abstract int getVersion()
-
verify
public abstract void verify(PublicKey var0) throws CRLException, NoSuchAlgorithmException, InvalidKeyException, NoSuchProviderException, SignatureException
-
verify
public abstract void verify(PublicKey var0, String var1) throws CRLException, NoSuchAlgorithmException, InvalidKeyException, NoSuchProviderException, SignatureException
-
hasUnsupportedCriticalExtension
public abstract boolean hasUnsupportedCriticalExtension()
- Specified by:
hasUnsupportedCriticalExtensionin interfaceX509Extension
-
getCriticalExtensionOIDs
public abstract Set getCriticalExtensionOIDs()
- Specified by:
getCriticalExtensionOIDsin interfaceX509Extension
-
getNonCriticalExtensionOIDs
public abstract Set getNonCriticalExtensionOIDs()
- Specified by:
getNonCriticalExtensionOIDsin interfaceX509Extension
-
getExtensionValue
public abstract byte[] getExtensionValue(String var0)
- Specified by:
getExtensionValuein interfaceX509Extension
-
-