Class BERTaggedObject

  • All Implemented Interfaces:
    ASN1TaggedObjectParser, DEREncodable, DERTags

    public class BERTaggedObject
    extends DERTaggedObject
    BER TaggedObject - in ASN.1 nottation this is any object proceeded by a [n] where n is some number - these are assume to follow the construction rules (as with sequences).
    • Constructor Detail

      • BERTaggedObject

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

        public BERTaggedObject​(boolean explicit,
                               int tagNo,
                               DEREncodable obj)
        Parameters:
        explicit - true if an explicitly tagged object.
        tagNo - the tag number for this object.
        obj - the tagged object.
      • BERTaggedObject

        public BERTaggedObject​(int tagNo)
        create an implicitly tagged object that contains a zero length sequence.