org.bouncycastle.asn1
Class DERSequence
java.lang.Object
|
+--org.bouncycastle.asn1.ASN1Object
|
+--org.bouncycastle.asn1.ASN1Primitive
|
+--org.bouncycastle.asn1.ASN1Sequence
|
+--org.bouncycastle.asn1.DERSequence
- All Implemented Interfaces:
- ASN1Encodable, Encodable, Iterable
- public class DERSequence
- extends ASN1Sequence
Definite length SEQUENCE, encoding tells explicit number of bytes
that the content of this sequence occupies.
For X.690 syntax rules, see ASN1Sequence
.
Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
DERSequence
public DERSequence()
- Create an empty sequence
DERSequence
public DERSequence(ASN1Encodable element)
- Create a sequence containing one object
- Parameters:
element
- the object to go in the sequence.
DERSequence
public DERSequence(ASN1EncodableVector elementVector)
- Create a sequence containing a vector of objects.
- Parameters:
elementVector
- the vector of objects to make up the sequence.
DERSequence
public DERSequence(ASN1Encodable[] elements)
- Create a sequence containing an array of objects.
- Parameters:
elements
- the array of objects to make up the sequence.
convert
public static DERSequence convert(ASN1Sequence seq)