Package io.anyline.nfc.bouncycastle.asn1
Class DERTaggedObject
-
- All Implemented Interfaces:
-
io.anyline.nfc.bouncycastle.asn1.ASN1Encodable
,io.anyline.nfc.bouncycastle.asn1.ASN1TaggedObjectParser
,io.anyline.nfc.bouncycastle.asn1.InMemoryRepresentable
,io.anyline.nfc.bouncycastle.util.Encodable
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(int tagNo, ASN1Encodable encodable)
DERTaggedObject(int tagClass, int tagNo, ASN1Encodable encodable)
DERTaggedObject(boolean explicit, int tagNo, ASN1Encodable obj)
DERTaggedObject(boolean explicit, int tagClass, int tagNo, ASN1Encodable obj)
-
Method Summary
Modifier and Type Method Description -
Methods inherited from class io.anyline.nfc.bouncycastle.asn1.ASN1TaggedObject
getBaseUniversal, getExplicitBaseObject, getExplicitBaseTagged, getExplicitContextBaseObject, getImplicitBaseTagged, getInstance, getInstance, getLoadedObject, getObject, getObjectParser, getTagClass, getTagNo, hasContextTag, hasTag, hashCode, isExplicit, parseBaseUniversal, toString
-
Methods inherited from class io.anyline.nfc.bouncycastle.asn1.ASN1Primitive
encodeTo, encodeTo, equals, equals, equals, fromByteArray, toASN1Primitive
-
Methods inherited from class io.anyline.nfc.bouncycastle.asn1.ASN1Object
equals, getEncoded, getEncoded
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Constructor Detail
-
DERTaggedObject
DERTaggedObject(int tagNo, ASN1Encodable encodable)
-
DERTaggedObject
DERTaggedObject(int tagClass, int tagNo, ASN1Encodable encodable)
-
DERTaggedObject
DERTaggedObject(boolean explicit, int tagNo, ASN1Encodable obj)
- Parameters:
explicit
- true if an explicitly tagged object.tagNo
- the tag number for this object.obj
- the tagged object.
-
DERTaggedObject
DERTaggedObject(boolean explicit, int tagClass, int tagNo, ASN1Encodable obj)
-
-
-
-