Class DERTaggedObject

All Implemented Interfaces:
ASN1TaggedObjectParser, DEREncodable, DERTags
Direct Known Subclasses:
BERTaggedObject

public class DERTaggedObject extends ASN1TaggedObject
DER 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 Details

    • DERTaggedObject

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

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

      public DERTaggedObject(int tagNo)
      create an implicitly tagged object that contains a zero length sequence.
  • Method Details