Package com.itextpdf.bouncycastle.asn1
Class DERSetBC
- java.lang.Object
-
- com.itextpdf.bouncycastle.asn1.ASN1EncodableBC
-
- com.itextpdf.bouncycastle.asn1.ASN1PrimitiveBC
-
- com.itextpdf.bouncycastle.asn1.ASN1SetBC
-
- com.itextpdf.bouncycastle.asn1.DERSetBC
-
- All Implemented Interfaces:
IASN1Encodable
,IASN1Primitive
,IASN1Set
,IDERSet
public class DERSetBC extends ASN1SetBC implements IDERSet
Wrapper class forDERSet
.
-
-
Constructor Summary
Constructors Constructor Description DERSetBC(org.bouncycastle.asn1.ASN1Encodable encodable)
Creates new wrapper instance forDERSet
.DERSetBC(org.bouncycastle.asn1.ASN1EncodableVector vector)
Creates new wrapper instance forDERSet
.DERSetBC(org.bouncycastle.asn1.DERSet derSet)
Creates new wrapper instance forDERSet
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.bouncycastle.asn1.DERSet
getDERSet()
Gets actual org.bouncycastle object being wrapped.-
Methods inherited from class com.itextpdf.bouncycastle.asn1.ASN1SetBC
getASN1Set, getObjectAt, getObjects, size, toArray
-
Methods inherited from class com.itextpdf.bouncycastle.asn1.ASN1PrimitiveBC
getEncoded, getEncoded, getPrimitive
-
Methods inherited from class com.itextpdf.bouncycastle.asn1.ASN1EncodableBC
equals, getEncodable, hashCode, isNull, toASN1Primitive, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.itextpdf.commons.bouncycastle.asn1.IASN1Encodable
isNull, toASN1Primitive
-
Methods inherited from interface com.itextpdf.commons.bouncycastle.asn1.IASN1Primitive
getEncoded, getEncoded
-
Methods inherited from interface com.itextpdf.commons.bouncycastle.asn1.IASN1Set
getObjectAt, getObjects, size, toArray
-
-
-
-
Constructor Detail
-
DERSetBC
public DERSetBC(org.bouncycastle.asn1.DERSet derSet)
Creates new wrapper instance forDERSet
.- Parameters:
derSet
-DERSet
to be wrapped
-
DERSetBC
public DERSetBC(org.bouncycastle.asn1.ASN1EncodableVector vector)
Creates new wrapper instance forDERSet
.- Parameters:
vector
-ASN1EncodableVector
to createDERSet
-
DERSetBC
public DERSetBC(org.bouncycastle.asn1.ASN1Encodable encodable)
Creates new wrapper instance forDERSet
.- Parameters:
encodable
-ASN1Encodable
to createDERSet
-
-