byte[] |
ASN1Decoder.decodeBitString() |
Decode the next ASN.1 element as a bit string.
|
byte[] |
DERDecoder.decodeBitString() |
|
String |
ASN1Decoder.decodeBitStringAsString() |
Decode the next ASN.1 element as a bit string.
|
String |
DERDecoder.decodeBitStringAsString() |
|
default String |
ASN1Decoder.decodeBMPString() |
Decode the next ASN.1 element as an BMPString.
|
String |
DERDecoder.decodeBMPString() |
|
default byte[] |
ASN1Decoder.decodeBMPStringAsBytes() |
Decode the next ASN.1 element as an BMPString.
|
byte[] |
DERDecoder.decodeBMPStringAsBytes() |
|
boolean |
ASN1Decoder.decodeBoolean() |
Decode the next ASN.1 element as a boolean value.
|
boolean |
DERDecoder.decodeBoolean() |
|
String |
ASN1Decoder.decodeIA5String() |
Decode the next ASN.1 element as an IA5 string.
|
String |
DERDecoder.decodeIA5String() |
|
byte[] |
ASN1Decoder.decodeIA5StringAsBytes() |
Decode the next ASN.1 element as an IA5 string.
|
byte[] |
DERDecoder.decodeIA5StringAsBytes() |
|
BigInteger |
DERDecoder.decodeInteger() |
|
void |
ASN1Decoder.decodeNull() |
Decode the next ASN.1 element as a null element.
|
void |
DERDecoder.decodeNull() |
|
String |
ASN1Decoder.decodeObjectIdentifier() |
Decode the next ASN.1 element as an object identifier.
|
String |
DERDecoder.decodeObjectIdentifier() |
|
byte[] |
ASN1Decoder.decodeOctetString() |
Decode the next ASN.1 element as an octet string.
|
byte[] |
DERDecoder.decodeOctetString() |
|
String |
ASN1Decoder.decodeOctetStringAsString() |
Decode the next ASN.1 element as an octet string.
|
String |
ASN1Decoder.decodeOctetStringAsString(String charSet) |
Decode the next ASN.1 element as an octet string.
|
String |
DERDecoder.decodeOctetStringAsString() |
|
String |
DERDecoder.decodeOctetStringAsString(String charSet) |
|
String |
ASN1Decoder.decodePrintableString() |
Decode the next ASN.1 element as a PrintableString.
|
String |
DERDecoder.decodePrintableString() |
|
byte[] |
ASN1Decoder.decodePrintableStringAsBytes() |
Decode the next ASN.1 element as a PrintableString.
|
byte[] |
DERDecoder.decodePrintableStringAsBytes() |
|
default String |
ASN1Decoder.decodeUniversalString() |
Decode the next ASN.1 element as an UniversalString.
|
String |
DERDecoder.decodeUniversalString() |
|
default byte[] |
ASN1Decoder.decodeUniversalStringAsBytes() |
Decode the next ASN.1 element as an UniversalString.
|
byte[] |
DERDecoder.decodeUniversalStringAsBytes() |
|
default String |
ASN1Decoder.decodeUtf8String() |
Decode the next ASN.1 element as an UTF8String.
|
String |
DERDecoder.decodeUtf8String() |
|
default byte[] |
ASN1Decoder.decodeUtf8StringAsBytes() |
Decode the next ASN.1 element as an UTF8String.
|
byte[] |
DERDecoder.decodeUtf8StringAsBytes() |
|
byte[] |
ASN1Decoder.drainElement() |
Drain all of the bytes from the next ASN.1 element.
|
byte[] |
DERDecoder.drainElement() |
|
byte[] |
ASN1Decoder.drainElementValue() |
Drain the value bytes from the next ASN.1 element.
|
byte[] |
DERDecoder.drainElementValue() |
|
void |
ASN1Encoder.encodeObjectIdentifier(String objectIdentifier) |
Encode an ASN.1 object identifier value.
|
void |
DEREncoder.encodeObjectIdentifier(String objectIdentifier) |
|
void |
ASN1Decoder.endExplicit() |
Advance to the end of an explicitly tagged element.
|
void |
DERDecoder.endExplicit() |
|
void |
ASN1Decoder.endSequence() |
Advance to the end of a sequence.
|
void |
DERDecoder.endSequence() |
|
void |
ASN1Decoder.endSet() |
Advance to the end of a set.
|
void |
DERDecoder.endSet() |
|
void |
ASN1Decoder.endSetOf() |
Advance to the end of a "set of" element.
|
void |
DERDecoder.endSetOf() |
|
int |
ASN1Decoder.peekType() |
Retrieve the type of the next ASN.1 element without actually decoding
the next element.
|
int |
DERDecoder.peekType() |
|
void |
ASN1Decoder.skipElement() |
Skip over the next ASN.1 element.
|
void |
DERDecoder.skipElement() |
|
void |
ASN1Decoder.startExplicit(int number) |
Start decoding an ASN.1 explicitly tagged element.
|
void |
ASN1Decoder.startExplicit(int clazz,
int number) |
Start decoding an ASN.1 explicitly tagged element.
|
void |
DERDecoder.startExplicit(int number) |
|
void |
DERDecoder.startExplicit(int clazz,
int number) |
|
void |
ASN1Decoder.startSequence() |
Start decoding an ASN.1 sequence.
|
void |
DERDecoder.startSequence() |
|
void |
ASN1Decoder.startSet() |
Start decoding an ASN.1 set.
|
void |
DERDecoder.startSet() |
|
void |
ASN1Decoder.startSetOf() |
Start decoding an ASN.1 "set of" element.
|
void |
DERDecoder.startSetOf() |
|
static void |
ASN1.validatePrintableByte(int b) |
|