Package org.bouncycastle.asn1
Class DERTaggedObject
java.lang.Object
org.bouncycastle.asn1.ASN1Object
org.bouncycastle.asn1.ASN1Primitive
org.bouncycastle.asn1.ASN1TaggedObject
org.bouncycastle.asn1.DERTaggedObject
- All Implemented Interfaces:
ASN1Encodable,ASN1TaggedObjectParser,InMemoryRepresentable
public class DERTaggedObject extends ASN1TaggedObject
DER TaggedObject - in ASN.1 notation this is any object preceded by
a [n] where n is some number - these are assumed to follow the construction
rules (as with sequences).
-
Constructor Summary
Constructors Constructor Description DERTaggedObject(boolean explicit, int tagNo, ASN1Encodable obj)DERTaggedObject(int tagNo, ASN1Encodable encodable) -
Method Summary
Methods inherited from class org.bouncycastle.asn1.ASN1TaggedObject
getInstance, getInstance, getLoadedObject, getObject, getObjectParser, getTagNo, hashCode, isEmpty, isExplicit, toStringMethods inherited from class org.bouncycastle.asn1.ASN1Primitive
equals, fromByteArray, toASN1PrimitiveMethods inherited from class org.bouncycastle.asn1.ASN1Object
getEncoded, getEncoded, hasEncodedTagValue, toASN1Object
-
Constructor Details
-
DERTaggedObject
- Parameters:
explicit- true if an explicitly tagged object.tagNo- the tag number for this object.obj- the tagged object.
-
DERTaggedObject
-