Bouncy Castle Cryptography 1.48

org.bouncycastle.asn1.x509
Class Certificate

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

public class Certificate
extends ASN1Object

an X509Certificate structure.

  Certificate ::= SEQUENCE {
      tbsCertificate          TBSCertificate,
      signatureAlgorithm      AlgorithmIdentifier,
      signature               BIT STRING
  }
 


Method Summary
 Time getEndDate()
           
static Certificate getInstance(ASN1TaggedObject obj, boolean explicit)
           
static Certificate getInstance(java.lang.Object obj)
           
 X500Name getIssuer()
           
 ASN1Integer getSerialNumber()
           
 DERBitString getSignature()
           
 AlgorithmIdentifier getSignatureAlgorithm()
           
 Time getStartDate()
           
 X500Name getSubject()
           
 SubjectPublicKeyInfo getSubjectPublicKeyInfo()
           
 TBSCertificate getTBSCertificate()
           
 ASN1Integer getVersion()
           
 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
 

Method Detail

getInstance

public static Certificate getInstance(ASN1TaggedObject obj,
                                      boolean explicit)

getInstance

public static Certificate getInstance(java.lang.Object obj)

getTBSCertificate

public TBSCertificate getTBSCertificate()

getVersion

public ASN1Integer getVersion()

getVersionNumber

public int getVersionNumber()

getSerialNumber

public ASN1Integer getSerialNumber()

getIssuer

public X500Name getIssuer()

getStartDate

public Time getStartDate()

getEndDate

public Time getEndDate()

getSubject

public X500Name getSubject()

getSubjectPublicKeyInfo

public SubjectPublicKeyInfo getSubjectPublicKeyInfo()

getSignatureAlgorithm

public AlgorithmIdentifier getSignatureAlgorithm()

getSignature

public DERBitString getSignature()

toASN1Primitive

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

Bouncy Castle Cryptography 1.48