Class DLTaggedObject

  • 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 DLTaggedObject
    extends ASN1TaggedObject
                        

    Definite Length 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).

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
      public final int tagClass
      public final int tagNo
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • 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

      • DLTaggedObject

        DLTaggedObject(int tagNo, ASN1Encodable encodable)
      • DLTaggedObject

        DLTaggedObject(int tagClass, int tagNo, ASN1Encodable encodable)
      • DLTaggedObject

        DLTaggedObject(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.
      • DLTaggedObject

        DLTaggedObject(boolean explicit, int tagClass, int tagNo, ASN1Encodable obj)
    • Method Detail