Modifier and Type | Method and Description |
---|---|
static byte[] |
Asn1Value.parseString(java.lang.String value)
This overloaded version of the parseString method sets the numbits
holder value to null.
|
static byte[] |
Asn1Value.parseString(java.lang.String value,
IntHolder numbits)
This static method parses the given ASN.1 value text (either a
binary or hex data string) and returns the value in a binary
byte array.
|
static java.lang.String[] |
Asn1Util.PLMNidentityToString(byte[] plmnIdentity)
Translates a PLMN identity string (i.e., byte array) to ASCII strings for the MCC and the MNC.
|
static boolean |
Asn1Value.stringEqualsBytes(java.lang.String value,
byte[] data,
int nbits)
This static method parses the given ASN.1 value text (either a
binary or hex data string) and compares it with the given byte array.
|
static byte[] |
Asn1Util.stringToBCD(java.lang.String str)
Translates an ASCII string to a BCD string.
|
static byte[] |
Asn1Util.stringToPLMNidentity(java.lang.String mcc,
java.lang.String mnc)
Translates ASCII Strings for MCC and MNC to a PLMNidentity.
|
static byte[] |
Asn1Util.stringToTBCD(java.lang.String str)
Translates an ASCII String to a TBCD String.
|
Constructor and Description |
---|
Asn1Base64BinaryString(java.lang.String value_)
This constructor parses the given ASN.1 value text (either a
binary or hex data string) and assigns the values to the internal
bit string.
|
Asn1BitString(java.lang.String value_)
This constructor parses the given ASN.1 value text (either a
binary or hex data string) and assigns the values to the internal
bit string.
|
Asn1OctetString(java.lang.String value_)
This constructor parses the given ASN.1 value text (either a
binary or hex data string) and assigns the values to the internal
bit string.
|
Asn1TBCDString(java.lang.String value_)
This constructor parses the given TBCD character string and assigns the
value to the internal octet string.
|