Class ASN1Set
- java.lang.Object
-
- org.bouncycastle.asn1.ASN1Object
-
- org.bouncycastle.asn1.ASN1Primitive
-
- org.bouncycastle.asn1.ASN1Set
-
- All Implemented Interfaces:
ASN1Encodable,Encodable
public abstract class ASN1Set extends ASN1Primitive
ASN.1SETandSET OFconstructs.Note: This does not know which syntax the set is! (The difference: ordering of SET elements or not ordering.)
DER form is always definite form length fields, while BER support uses indefinite form.
The CER form support does not exist.
X.690
8: Basic encoding rules
8.11 Encoding of a set value
8.11.1 The encoding of a set value shall be constructed8.11.2 The contents octets shall consist of the complete encoding of a data value from each of the types listed in the ASN.1 definition of the set type, in an order chosen by the sender, unless the type was referenced with the keyword OPTIONAL or the keyword DEFAULT.
8.11.3 The encoding of a data value may, but need not, be present for a type which was referenced with the keyword OPTIONAL or the keyword DEFAULT.
NOTE — The order of data values in a set value is not significant, and places no constraints on the order during transfer
8.12 Encoding of a set-of value
8.12.1 The encoding of a set-of value shall be constructed.8.12.2 The text of 8.10.2 applies: The contents octets shall consist of zero, one or more complete encodings of data values from the type listed in the ASN.1 definition.
8.12.3 The order of data values need not be preserved by the encoding and subsequent decoding.
9: Canonical encoding rules
9.1 Length forms
If the encoding is constructed, it shall employ the indefinite length form. If the encoding is primitive, it shall include the fewest length octets necessary. [Contrast with 8.1.3.2 b).]9.3 Set components
The encodings of the component values of a set value shall appear in an order determined by their tags as specified in 8.6 of ITU-T Rec. X.680 | ISO/IEC 8824-1. Additionally, for the purposes of determining the order in which components are encoded when one or more component is an untagged choice type, each untagged choice type is ordered as though it has a tag equal to that of the smallest tag in that choice type or any untagged choice types nested within.10: Distinguished encoding rules
10.1 Length forms
The definite form of length encoding shall be used, encoded in the minimum number of octets. [Contrast with 8.1.3.2 b).]10.3 Set components
The encodings of the component values of a set value shall appear in an order determined by their tags as specified in 8.6 of ITU-T Rec. X.680 | ISO/IEC 8824-1.NOTE — Where a component of the set is an untagged choice type, the location of that component in the ordering will depend on the tag of the choice component being encoded.
11: Restrictions on BER employed by both CER and DER
11.5 Set and sequence components with default value
The encoding of a set value or sequence value shall not include an encoding for any component value which is equal to its default value.11.6 Set-of components
The encodings of the component values of a set-of value shall appear in ascending order, the encodings being compared as octet strings with the shorter components being padded at their trailing end with 0-octets.
NOTE — The padding octets are for comparison purposes only and do not appear in the encodings.
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedASN1Set()protectedASN1Set(ASN1Encodable obj)create a sequence containing one objectprotectedASN1Set(ASN1Encodable[] array, boolean doSort)create a sequence containing a vector of objects.protectedASN1Set(ASN1EncodableVector v, boolean doSort)create a sequence containing a vector of objects.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ASN1SetgetInstance(Object obj)return an ASN1Set from the given object.static ASN1SetgetInstance(ASN1TaggedObject obj, boolean explicit)Return an ASN1 set from a tagged object.ASN1EncodablegetObjectAt(int index)return the object at the set position indicated by index.EnumerationgetObjects()inthashCode()Returns an integer hash code for this object.ASN1SetParserparser()intsize()return the number of objects in this set.protected voidsort()ASN1Encodable[]toArray()StringtoString()Returns a string containing a concise, human-readable description of this object.-
Methods inherited from class org.bouncycastle.asn1.ASN1Primitive
equals, fromByteArray, toASN1Primitive
-
Methods inherited from class org.bouncycastle.asn1.ASN1Object
getEncoded, getEncoded, hasEncodedTagValue, toASN1Object
-
-
-
-
Constructor Detail
-
ASN1Set
protected ASN1Set()
-
ASN1Set
protected ASN1Set(ASN1Encodable obj)
create a sequence containing one object- Parameters:
obj- object to be added to the SET.
-
ASN1Set
protected ASN1Set(ASN1EncodableVector v, boolean doSort)
create a sequence containing a vector of objects.- Parameters:
v- a vector of objects to make up the SET.doSort- true if should be sorted DER style, false otherwise.
-
ASN1Set
protected ASN1Set(ASN1Encodable[] array, boolean doSort)
create a sequence containing a vector of objects.
-
-
Method Detail
-
getInstance
public static ASN1Set getInstance(Object obj)
return an ASN1Set from the given object.- Parameters:
obj- the object we want converted.- Returns:
- an ASN1Set instance, or null.
- Throws:
IllegalArgumentException- if the object cannot be converted.
-
getInstance
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.- Returns:
- an ASN1Set instance.
- Throws:
IllegalArgumentException- if the tagged object cannot be converted.
-
getObjects
public Enumeration getObjects()
-
getObjectAt
public ASN1Encodable 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.
-
size
public int size()
return the number of objects in this set.- Returns:
- the number of objects in this set.
-
toArray
public ASN1Encodable[] toArray()
-
parser
public ASN1SetParser parser()
-
hashCode
public int hashCode()
Description copied from class:ObjectReturns an integer hash code for this object. By contract, any two objects for whichObject.equals(java.lang.Object)returnstruemust return the same hash code value. This means that subclasses ofObjectusually override both methods or neither method.Note that hash values must not change over time unless information used in equals comparisons also changes.
See Writing a correct
hashCodemethod if you intend implementing your ownhashCodemethod.- Specified by:
hashCodein classASN1Primitive- Returns:
- this object's hash code.
- See Also:
Object.equals(java.lang.Object)
-
sort
protected void sort()
-
toString
public String toString()
Description copied from class:ObjectReturns a string containing a concise, human-readable description of this object. Subclasses are encouraged to override this method and provide an implementation that takes into account the object's type and data. The default implementation is equivalent to the following expression:getClass().getName() + '@' + Integer.toHexString(hashCode())
See Writing a useful
toStringmethod if you intend implementing your owntoStringmethod.
-
-