static ASN1Encodable |
ASN1Encodable.ofBMPString(String string) |
Create an instance that will encode the given string as BMP (UTF-16BE).
|
static ASN1Encodable |
ASN1Encodable.ofEncodedBytes(byte[] bytes) |
Create an instance that will write the given encoded bytes.
|
static ASN1Encodable |
ASN1Encodable.ofIA5String(String string) |
Create an instance that will encode the given string in IA5 form.
|
static ASN1Encodable |
ASN1Encodable.ofInteger(int value) |
Create an instance that will encode the given integer.
|
static ASN1Encodable |
ASN1Encodable.ofInteger(BigInteger value) |
Create an instance that will encode the given integer.
|
static ASN1Encodable |
ASN1Encodable.ofOid(String oid) |
Create an instance that will encode the given object identifier.
|
static ASN1Encodable |
ASN1Encodable.ofPrintableString(String string) |
Create an instance that will encode the given string in "printable" form.
|
static ASN1Encodable |
ASN1Encodable.ofUniversalString(String string) |
Create an instance that will encode the given string as universal (UTF-32BE).
|
static ASN1Encodable |
ASN1Encodable.ofUtf8String(String string) |
Create an instance that will encode the given string as UTF-8.
|