Package org.bouncycastle.asn1.pkcs
Class CRLBag
- java.lang.Object
-
- org.bouncycastle.asn1.ASN1Object
-
- org.bouncycastle.asn1.pkcs.CRLBag
-
- All Implemented Interfaces:
ASN1Encodable
,Encodable
public class CRLBag extends ASN1Object
CRL Bag for PKCS#12
-
-
Constructor Summary
Constructors Constructor Description CRLBag(ASN1ObjectIdentifier crlId, ASN1Encodable crlValue)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ASN1ObjectIdentifier
getCrlId()
ASN1Encodable
getCrlValue()
static CRLBag
getInstance(java.lang.Object o)
ASN1Primitive
toASN1Primitive()
CRLBag ::= SEQUENCE { crlId BAG-TYPE.&id ({CRLTypes}), crlValue [0] EXPLICIT BAG-TYPE.&Type ({CRLTypes}{@crlId}) } x509CRL BAG-TYPE ::= {OCTET STRING IDENTIFIED BY {certTypes 1} -- DER-encoded X.509 CRL stored in OCTET STRING CRLTypes BAG-TYPE ::= { x509CRL, ... -- For future extensions }-
Methods inherited from class org.bouncycastle.asn1.ASN1Object
encodeTo, encodeTo, equals, getEncoded, getEncoded, hasEncodedTagValue, hashCode
-
-
-
-
Constructor Detail
-
CRLBag
public CRLBag(ASN1ObjectIdentifier crlId, ASN1Encodable crlValue)
-
-
Method Detail
-
getInstance
public static CRLBag getInstance(java.lang.Object o)
-
getCrlId
public ASN1ObjectIdentifier getCrlId()
-
getCrlValue
public ASN1Encodable getCrlValue()
-
toASN1Primitive
public ASN1Primitive toASN1Primitive()
CRLBag ::= SEQUENCE { crlId BAG-TYPE.&id ({CRLTypes}), crlValue [0] EXPLICIT BAG-TYPE.&Type ({CRLTypes}{@crlId}) } x509CRL BAG-TYPE ::= {OCTET STRING IDENTIFIED BY {certTypes 1} -- DER-encoded X.509 CRL stored in OCTET STRING CRLTypes BAG-TYPE ::= { x509CRL, ... -- For future extensions }
- Specified by:
toASN1Primitive
in interfaceASN1Encodable
- Specified by:
toASN1Primitive
in classASN1Object
- Returns:
- a primitive representation of this object.
-
-