Bouncy Castle Cryptography Library 1.49

org.bouncycastle.asn1.x509
Class CertificateList

java.lang.Object
  extended by org.bouncycastle.asn1.ASN1Object
      extended by org.bouncycastle.asn1.x509.CertificateList
All Implemented Interfaces:
ASN1Encodable

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  }
 


Constructor Summary
CertificateList(ASN1Sequence seq)
           
 
Method Summary
static CertificateList getInstance(ASN1TaggedObject obj, boolean explicit)
           
static CertificateList getInstance(java.lang.Object obj)
           
 X500Name getIssuer()
           
 Time getNextUpdate()
           
 java.util.Enumeration getRevokedCertificateEnumeration()
           
 TBSCertList.CRLEntry[] getRevokedCertificates()
           
 DERBitString getSignature()
           
 AlgorithmIdentifier getSignatureAlgorithm()
           
 TBSCertList getTBSCertList()
           
 Time getThisUpdate()
           
 int getVersionNumber()
           
 ASN1Primitive toASN1Primitive()
           
 
Methods inherited from class org.bouncycastle.asn1.ASN1Object
equals, getEncoded, getEncoded, hasEncodedTagValue, hashCode, toASN1Object
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, 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 TBSCertList.CRLEntry[] getRevokedCertificates()

getRevokedCertificateEnumeration

public java.util.Enumeration getRevokedCertificateEnumeration()

getSignatureAlgorithm

public AlgorithmIdentifier getSignatureAlgorithm()

getSignature

public DERBitString getSignature()

getVersionNumber

public int getVersionNumber()

getIssuer

public X500Name getIssuer()

getThisUpdate

public Time getThisUpdate()

getNextUpdate

public Time getNextUpdate()

toASN1Primitive

public ASN1Primitive toASN1Primitive()
Specified by:
toASN1Primitive in interface ASN1Encodable
Specified by:
toASN1Primitive in class ASN1Object

Bouncy Castle Cryptography Library 1.49