Class BERTaggedObject

All Implemented Interfaces:
ASN1Encodable, ASN1TaggedObjectParser, InMemoryRepresentable, Encodable

public class BERTaggedObject extends ASN1TaggedObject
BER 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 Details

    • BERTaggedObject

      public BERTaggedObject(int tagNo, ASN1Encodable obj)
      Parameters:
      tagNo - the tag number for this object.
      obj - the tagged object.
    • BERTaggedObject

      public BERTaggedObject(int tagClass, int tagNo, ASN1Encodable obj)
    • BERTaggedObject

      public BERTaggedObject(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.
    • BERTaggedObject

      public BERTaggedObject(boolean explicit, int tagClass, int tagNo, ASN1Encodable obj)