Package org.bouncycastle.asn1
Class DERGeneralString
- java.lang.Object
-
- org.bouncycastle.asn1.ASN1Object
-
- org.bouncycastle.asn1.ASN1Primitive
-
- org.bouncycastle.asn1.ASN1GeneralString
-
- org.bouncycastle.asn1.DERGeneralString
-
- All Implemented Interfaces:
ASN1Encodable,ASN1String,Encodable
public class DERGeneralString extends ASN1GeneralString
ASN.1 GENERAL-STRING data type.This is an 8-bit encoded ISO 646 (ASCII) character set with optional escapes to other character sets.
-
-
Constructor Summary
Constructors Constructor Description DERGeneralString(java.lang.String string)Construct a GeneralString from the passed in String.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static DERGeneralStringgetInstance(java.lang.Object obj)Deprecated.UseASN1GeneralString.getInstance(Object)instead.static DERGeneralStringgetInstance(ASN1TaggedObject obj, boolean explicit)Deprecated.-
Methods inherited from class org.bouncycastle.asn1.ASN1GeneralString
getOctets, getString, hashCode, 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
-
-
-
-
Method Detail
-
getInstance
public static DERGeneralString getInstance(java.lang.Object obj)
Deprecated.UseASN1GeneralString.getInstance(Object)instead.Return a GeneralString from the given object.- Parameters:
obj- the object we want converted.- Returns:
- a DERBMPString instance, or null.
- Throws:
java.lang.IllegalArgumentException- if the object cannot be converted.
-
getInstance
public static DERGeneralString getInstance(ASN1TaggedObject obj, boolean explicit)
Deprecated.Return a GeneralString from a tagged object.- Parameters:
obj- the tagged object holding the object we wantexplicit- true if the object is meant to be explicitly tagged false otherwise.- Returns:
- a DERGeneralString instance.
- Throws:
java.lang.IllegalArgumentException- if the tagged object cannot be converted.
-
-