org.bouncycastle.asn1

Class DERTaggedObject

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 Summary
DERTaggedObject(int tagNo, DEREncodable obj)
DERTaggedObject(boolean explicit, int tagNo, DEREncodable obj)
DERTaggedObject(int tagNo)
create an implicitly tagged object that contains a zero length sequence.

Constructor Detail

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.