Class BERApplicationSpecific

  • All Implemented Interfaces:
    io.anyline.nfc.bouncycastle.asn1.ASN1ApplicationSpecificParser , 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 BERApplicationSpecific
    extends ASN1ApplicationSpecific
                        

    An indefinite-length encoding version of an ASN.1 ApplicationSpecific object.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      • Methods inherited from class io.anyline.nfc.bouncycastle.asn1.ASN1ApplicationSpecific

        getApplicationTag, getContents, getEnclosedObject, getInstance, getLoadedObject, getObject, getObject, getObjectParser, getTagClass, getTagNo, getTaggedObject, hasApplicationTag, hasContextTag, hasTag, hashCode, isConstructed, parseBaseUniversal, readObject
      • 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

      • BERApplicationSpecific

        BERApplicationSpecific(int tagNo, ASN1Encodable baseEncodable)
        Create an application specific object with an explicit tag
        Parameters:
        tagNo - the tag number for this object.
        baseEncodable - the object to be contained.
      • BERApplicationSpecific

        BERApplicationSpecific(boolean explicit, int tagNo, ASN1Encodable baseEncodable)
        Create an application specific object with the tagging style given by the value of explicit.
        Parameters:
        explicit - true if the object is explicitly tagged.
        tagNo - the tag number for this object.
        baseEncodable - the object to be contained.
      • BERApplicationSpecific

        BERApplicationSpecific(int tagNo, ASN1EncodableVector contentsElements)
        Create an application specific object which is marked as constructed
        Parameters:
        tagNo - the tag number for this object.
        contentsElements - the objects making up the application specific object.
    • Method Detail