Class CertificateList
-
- All Implemented Interfaces:
-
io.anyline.nfc.bouncycastle.asn1.ASN1Encodable,io.anyline.nfc.bouncycastle.util.Encodable
public class CertificateList extends ASN1Object
PKIX RFC-2459 The X.509 v2 CRL syntax is as follows. For signature calculation, the data that is to be signed is ASN.1 DER encoded.
CertificateList ::= SEQUENCE { tbsCertList TBSCertList, signatureAlgorithm AlgorithmIdentifier, signatureValue BIT STRING }
-
-
Field Summary
Fields Modifier and Type Field Description public TBSCertListtbsCertList
-
Method Summary
Modifier and Type Method Description TBSCertListgetTBSCertList()static CertificateListgetInstance(ASN1TaggedObject obj, boolean explicit)static CertificateListgetInstance(Object obj)Array<TBSCertList.CRLEntry>getRevokedCertificates()EnumerationgetRevokedCertificateEnumeration()AlgorithmIdentifiergetSignatureAlgorithm()DERBitStringgetSignature()intgetVersionNumber()X500NamegetIssuer()TimegetThisUpdate()TimegetNextUpdate()ASN1PrimitivetoASN1Primitive()Method providing a primitive representation of this object suitable for encoding. inthashCode()-
-
Method Detail
-
getTBSCertList
TBSCertList getTBSCertList()
-
getInstance
static CertificateList getInstance(ASN1TaggedObject obj, boolean explicit)
-
getInstance
static CertificateList getInstance(Object obj)
-
getRevokedCertificates
Array<TBSCertList.CRLEntry> getRevokedCertificates()
-
getRevokedCertificateEnumeration
Enumeration getRevokedCertificateEnumeration()
-
getSignatureAlgorithm
AlgorithmIdentifier getSignatureAlgorithm()
-
getSignature
DERBitString getSignature()
-
getVersionNumber
int getVersionNumber()
-
getThisUpdate
Time getThisUpdate()
-
getNextUpdate
Time getNextUpdate()
-
toASN1Primitive
ASN1Primitive toASN1Primitive()
Method providing a primitive representation of this object suitable for encoding.
- Returns:
a primitive representation of this object.
-
hashCode
int hashCode()
-
-
-
-