public class

BERTaggedObject

extends DERTaggedObject
java.lang.Object
   ↳ org.bouncycastle.asn1.ASN1Encodable
     ↳ org.bouncycastle.asn1.DERObject
       ↳ org.bouncycastle.asn1.ASN1Object
         ↳ org.bouncycastle.asn1.ASN1TaggedObject
           ↳ org.bouncycastle.asn1.DERTaggedObject
             ↳ org.bouncycastle.asn1.BERTaggedObject

Class Overview

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).

Summary

[Expand]
Inherited Constants
From class org.bouncycastle.asn1.ASN1Encodable
From interface org.bouncycastle.asn1.DERTags
Public Constructors
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.
[Expand]
Inherited Methods
From class org.bouncycastle.asn1.ASN1TaggedObject
From class org.bouncycastle.asn1.ASN1Object
From class org.bouncycastle.asn1.DERObject
From class org.bouncycastle.asn1.ASN1Encodable
From class java.lang.Object
From interface org.bouncycastle.asn1.ASN1TaggedObjectParser
From interface org.bouncycastle.asn1.DEREncodable
From interface org.bouncycastle.asn1.InMemoryRepresentable

Public Constructors

public BERTaggedObject (int tagNo, DEREncodable obj)

Parameters
tagNo the tag number for this object.
obj the tagged object.

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.

public BERTaggedObject (int tagNo)

create an implicitly tagged object that contains a zero length sequence.