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 TBSCertList
tbsCertList
-
Method Summary
Modifier and Type Method Description TBSCertList
getTBSCertList()
static CertificateList
getInstance(ASN1TaggedObject obj, boolean explicit)
static CertificateList
getInstance(Object obj)
Array<TBSCertList.CRLEntry>
getRevokedCertificates()
Enumeration
getRevokedCertificateEnumeration()
AlgorithmIdentifier
getSignatureAlgorithm()
DERBitString
getSignature()
int
getVersionNumber()
X500Name
getIssuer()
Time
getThisUpdate()
Time
getNextUpdate()
ASN1Primitive
toASN1Primitive()
Method providing a primitive representation of this object suitable for encoding. int
hashCode()
-
-
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()
-
-
-
-