Given the following ASN1 definition:
InitialUE-Identity ::= CHOICE {
s-TMSI S-TMSI,
randomValue BIT STRING (SIZE (40))
}
An XER encoding for randomvalue: 0x59AA46959A
would be:
<InitialUE-Identity>
<randomValue>0101100110101010010001101001010110011010</randomValue>
</InitialUE-Identity>
Is there any way to input a BIT STRING in hex format? Something like:
<InitialUE-Identity>
<randomValue>0x59AA46959A</randomValue>
</InitialUE-Identity>