org.bouncycastle.asn1

Class BERTaggedObject

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

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.