public abstract class

ASN1Set

extends ASN1Object
java.lang.Object
   ↳ org.bouncycastle.asn1.ASN1Encodable
     ↳ org.bouncycastle.asn1.DERObject
       ↳ org.bouncycastle.asn1.ASN1Object
         ↳ org.bouncycastle.asn1.ASN1Set
Known Direct Subclasses
Known Indirect Subclasses

Summary

[Expand]
Inherited Constants
From class org.bouncycastle.asn1.ASN1Encodable
From interface org.bouncycastle.asn1.DERTags
Fields
protected Vector set
Public Constructors
ASN1Set()
Public Methods
static ASN1Set getInstance(ASN1TaggedObject obj, boolean explicit)
Return an ASN1 set from a tagged object.
static ASN1Set getInstance(Object obj)
return an ASN1Set from the given object.
DEREncodable getObjectAt(int index)
return the object at the set position indicated by index.
Enumeration getObjects()
int hashCode()
ASN1SetParser parser()
int size()
return the number of objects in this set.
ASN1Encodable[] toArray()
String toString()
Protected Methods
void addObject(DEREncodable obj)
void sort()
[Expand]
Inherited Methods
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.DEREncodable

Fields

protected Vector set

Public Constructors

public ASN1Set ()

Public Methods

public static ASN1Set getInstance (ASN1TaggedObject obj, boolean explicit)

Return an ASN1 set from a tagged object. There is a special case here, if an object appears to have been explicitly tagged on reading but we were expecting it to be implicitly tagged in the normal course of events it indicates that we lost the surrounding set - so we need to add it back (this will happen if the tagged object is a sequence that contains other sequences). If you are dealing with implicitly tagged sets you really should be using this method.

Parameters
obj the tagged object.
explicit true if the object is meant to be explicitly tagged false otherwise.
Throws
IllegalArgumentException if the tagged object cannot be converted.

public static ASN1Set getInstance (Object obj)

return an ASN1Set from the given object.

Parameters
obj the object we want converted.
Throws
IllegalArgumentException if the object cannot be converted.

public DEREncodable getObjectAt (int index)

return the object at the set position indicated by index.

Parameters
index the set number (starting at zero) of the object
Returns
  • the object at the set position indicated by index.

public Enumeration getObjects ()

public int hashCode ()

public ASN1SetParser parser ()

public int size ()

return the number of objects in this set.

Returns
  • the number of objects in this set.

public ASN1Encodable[] toArray ()

public String toString ()

Protected Methods

protected void addObject (DEREncodable obj)

protected void sort ()