Package org.bouncycastle.asn1.x509
Class TBSCertList
java.lang.Object
org.bouncycastle.asn1.ASN1Object
org.bouncycastle.asn1.x509.TBSCertList
- All Implemented Interfaces:
ASN1Encodable
public class TBSCertList extends ASN1Object
PKIX RFC-2459 - TBSCertList object.
TBSCertList ::= SEQUENCE {
version Version OPTIONAL,
-- if present, shall be v2
signature AlgorithmIdentifier,
issuer Name,
thisUpdate Time,
nextUpdate Time OPTIONAL,
revokedCertificates SEQUENCE OF SEQUENCE {
userCertificate CertificateSerialNumber,
revocationDate Time,
crlEntryExtensions Extensions OPTIONAL
-- if present, shall be v2
} OPTIONAL,
crlExtensions [0] EXPLICIT Extensions OPTIONAL
-- if present, shall be v2
}
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classTBSCertList.CRLEntry -
Constructor Summary
Constructors Constructor Description TBSCertList(ASN1Sequence seq) -
Method Summary
Modifier and Type Method Description ExtensionsgetExtensions()static TBSCertListgetInstance(Object obj)static TBSCertListgetInstance(ASN1TaggedObject obj, boolean explicit)X500NamegetIssuer()TimegetNextUpdate()EnumerationgetRevokedCertificateEnumeration()TBSCertList.CRLEntry[]getRevokedCertificates()AlgorithmIdentifiergetSignature()TimegetThisUpdate()ASN1IntegergetVersion()intgetVersionNumber()ASN1PrimitivetoASN1Primitive()Methods inherited from class org.bouncycastle.asn1.ASN1Object
equals, getEncoded, getEncoded, hasEncodedTagValue, hashCode, toASN1Object
-
Constructor Details
-
TBSCertList
-
-
Method Details
-
getInstance
-
getInstance
-
getVersionNumber
public int getVersionNumber() -
getVersion
-
getSignature
-
getIssuer
-
getThisUpdate
-
getNextUpdate
-
getRevokedCertificates
-
getRevokedCertificateEnumeration
-
getExtensions
-
toASN1Primitive
- Specified by:
toASN1Primitivein interfaceASN1Encodable- Specified by:
toASN1Primitivein classASN1Object
-