Bouncy Castle Cryptography 1.25

org.bouncycastle.asn1.x509
Class CertificateList

java.lang.Object
  |
  +--org.bouncycastle.asn1.x509.CertificateList
All Implemented Interfaces:
DEREncodable

public class CertificateList
extends java.lang.Object
implements DEREncodable

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  }
 


Constructor Summary
CertificateList(ASN1Sequence seq)
           
 
Method Summary
 DERObject getDERObject()
           
static CertificateList getInstance(ASN1TaggedObject obj, boolean explicit)
           
static CertificateList getInstance(java.lang.Object obj)
           
 X509Name getIssuer()
           
 DERUTCTime getNextUpdate()
           
 CRLEntry[] getRevokedCertificates()
           
 DERBitString getSignature()
           
 AlgorithmIdentifier getSignatureAlgorithm()
           
 TBSCertList getTBSCertList()
           
 DERUTCTime getThisUpdate()
           
 int getVersion()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

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 CRLEntry[] getRevokedCertificates()

getSignatureAlgorithm

public AlgorithmIdentifier getSignatureAlgorithm()

getSignature

public DERBitString getSignature()

getVersion

public int getVersion()

getIssuer

public X509Name getIssuer()

getThisUpdate

public DERUTCTime getThisUpdate()

getNextUpdate

public DERUTCTime getNextUpdate()

getDERObject

public DERObject getDERObject()
Specified by:
getDERObject in interface DEREncodable

Bouncy Castle Cryptography 1.25