Package org.bouncycastle.asn1
Class DERSet
java.lang.Object
org.bouncycastle.asn1.ASN1Object
org.bouncycastle.asn1.ASN1Primitive
org.bouncycastle.asn1.ASN1Set
org.bouncycastle.asn1.DERSet
- All Implemented Interfaces:
Iterable<ASN1Encodable>
,ASN1Encodable
,Encodable
,Iterable<ASN1Encodable>
-
Field Summary
Fields inherited from class org.bouncycastle.asn1.ASN1Set
elements, sortedElements
-
Constructor Summary
ConstructorsConstructorDescriptionDERSet()
create an empty setDERSet
(ASN1Encodable element) create a set containing one objectDERSet
(ASN1Encodable[] elements) create a set containing an array of objects.DERSet
(ASN1EncodableVector elementVector) create a set containing a vector of objects. -
Method Summary
Methods inherited from class org.bouncycastle.asn1.ASN1Set
getInstance, getInstance, getObjectAt, getObjects, hashCode, iterator, parser, size, toArray, toString
Methods inherited from class org.bouncycastle.asn1.ASN1Primitive
encodeTo, encodeTo, equals, equals, equals, fromByteArray, toASN1Primitive
Methods inherited from class org.bouncycastle.asn1.ASN1Object
getEncoded, getEncoded, hasEncodedTagValue
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Constructor Details
-
DERSet
public DERSet()create an empty set -
DERSet
create a set containing one object- Parameters:
element
- the object to go in the set
-
DERSet
create a set containing a vector of objects.- Parameters:
elementVector
- the vector of objects to make up the set.
-
DERSet
create a set containing an array of objects.- Parameters:
elements
- the array of objects to make up the set.
-
-
Method Details
-
convert
-