public class CertificateList extends ASN1Object
CertificateList ::= SEQUENCE {
tbsCertList TBSCertList,
signatureAlgorithm AlgorithmIdentifier,
signatureValue BIT STRING }
| Constructor and Description |
|---|
CertificateList(ASN1Sequence seq)
Deprecated.
use getInstance() method.
|
| Modifier and Type | Method and Description |
|---|---|
static CertificateList |
getInstance(ASN1TaggedObject obj,
boolean explicit) |
static CertificateList |
getInstance(Object obj) |
X500Name |
getIssuer() |
Time |
getNextUpdate() |
Enumeration |
getRevokedCertificateEnumeration() |
TBSCertList.CRLEntry[] |
getRevokedCertificates() |
DERBitString |
getSignature() |
AlgorithmIdentifier |
getSignatureAlgorithm() |
TBSCertList |
getTBSCertList() |
Time |
getThisUpdate() |
int |
getVersionNumber() |
int |
hashCode()
Returns an integer hash code for this object.
|
ASN1Primitive |
toASN1Primitive()
Method providing a primitive representation of this object suitable for encoding.
|
equals, getEncoded, getEncoded, hasEncodedTagValue, toASN1Objectpublic CertificateList(ASN1Sequence seq)
seq - public static CertificateList getInstance(ASN1TaggedObject obj, boolean explicit)
public static CertificateList getInstance(Object obj)
public TBSCertList getTBSCertList()
public TBSCertList.CRLEntry[] getRevokedCertificates()
public Enumeration getRevokedCertificateEnumeration()
public AlgorithmIdentifier getSignatureAlgorithm()
public DERBitString getSignature()
public int getVersionNumber()
public X500Name getIssuer()
public Time getThisUpdate()
public Time getNextUpdate()
public ASN1Primitive toASN1Primitive()
ASN1ObjecttoASN1Primitive in interface ASN1EncodabletoASN1Primitive in class ASN1Objectpublic int hashCode()
ObjectObject.equals(java.lang.Object) returns true must return
the same hash code value. This means that subclasses of Object
usually override both methods or neither method.
Note that hash values must not change over time unless information used in equals comparisons also changes.
See Writing a correct
hashCode method
if you intend implementing your own hashCode method.
hashCode in class ASN1ObjectObject.equals(java.lang.Object)