Package org.gudy.bouncycastle.asn1.x509
Class CertificateList
- java.lang.Object
-
- org.gudy.bouncycastle.asn1.ASN1Encodable
-
- org.gudy.bouncycastle.asn1.x509.CertificateList
-
- All Implemented Interfaces:
DEREncodable
public class CertificateList extends ASN1Encodable
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 (package private) DERBitString
sig
(package private) AlgorithmIdentifier
sigAlgId
(package private) TBSCertList
tbsCertList
-
Fields inherited from class org.gudy.bouncycastle.asn1.ASN1Encodable
BER, DER
-
-
Constructor Summary
Constructors Constructor Description CertificateList(ASN1Sequence seq)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CertificateList
getInstance(java.lang.Object obj)
static CertificateList
getInstance(ASN1TaggedObject obj, boolean explicit)
X509Name
getIssuer()
Time
getNextUpdate()
TBSCertList.CRLEntry[]
getRevokedCertificates()
DERBitString
getSignature()
AlgorithmIdentifier
getSignatureAlgorithm()
TBSCertList
getTBSCertList()
Time
getThisUpdate()
int
getVersion()
DERObject
toASN1Object()
-
Methods inherited from class org.gudy.bouncycastle.asn1.ASN1Encodable
equals, getDEREncoded, getDERObject, getEncoded, getEncoded, hashCode
-
-
-
-
Field Detail
-
tbsCertList
TBSCertList tbsCertList
-
sigAlgId
AlgorithmIdentifier sigAlgId
-
sig
DERBitString sig
-
-
Constructor Detail
-
CertificateList
public CertificateList(ASN1Sequence seq)
-
-
Method Detail
-
getInstance
public static CertificateList getInstance(ASN1TaggedObject obj, boolean explicit)
-
getInstance
public static CertificateList getInstance(java.lang.Object obj)
-
getTBSCertList
public TBSCertList getTBSCertList()
-
getRevokedCertificates
public TBSCertList.CRLEntry[] getRevokedCertificates()
-
getSignatureAlgorithm
public AlgorithmIdentifier getSignatureAlgorithm()
-
getSignature
public DERBitString getSignature()
-
getVersion
public int getVersion()
-
getIssuer
public X509Name getIssuer()
-
getThisUpdate
public Time getThisUpdate()
-
getNextUpdate
public Time getNextUpdate()
-
toASN1Object
public DERObject toASN1Object()
- Specified by:
toASN1Object
in classASN1Encodable
-
-