public class

DERTaggedObject

extends ASN1TaggedObject
java.lang.Object
   ↳ org.bouncycastle.asn1.ASN1Encodable
     ↳ org.bouncycastle.asn1.DERObject
       ↳ org.bouncycastle.asn1.ASN1Object
         ↳ org.bouncycastle.asn1.ASN1TaggedObject
           ↳ org.bouncycastle.asn1.DERTaggedObject
Known Direct Subclasses

Class Overview

DER 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
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.
[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 DERTaggedObject (int tagNo, DEREncodable obj)

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

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.

public DERTaggedObject (int tagNo)

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