From ITU-T Rec. X.680 (02/21):

C.5.7

IA5String [is] mapped into UniversalString by mapping each character into the UniversalString character that has the identical (32-bit) value in the BER encoding of UniversalString as the (8-bit) value of the BER encoding of IA5String[.]

41.6

The characters which can appear in the UniversalString type are any of the characters allowed by ISO/IEC 10646 [aka Unicode].

43.8

For IA5String, [the] entire character set contains precisely 128 characters[.]

So it would seem that IA5String really is identical to ASCII, considering that all 128 ASCII characters, including non-printable ones, are identical to the Unicode characters of the same index. (This can be tested via Python by assert all(struct.pack('!B', i).decode('ascii') == chr(i) for i in range(128)))

Leave a Reply

Your email address will not be published. Required fields are marked *

Warning: This site uses Akismet to filter spam. Until or unless I can find a suitable replacement anti-spam solution, this means that (per their indemnification document) all commenters' IP addresses will be sent to Automattic, Inc., who may choose to share such with 3rd parties.
If this is unacceptable to you, I highly recommend using an anonymous proxy or public Wi-Fi connection when commenting.