Type Definition bcder::Ia5String

source ·
pub type Ia5String = RestrictedString<Ia5CharSet>;
Expand description

A restricted character string containing ASCII characters.

This character string allows all ASCII characters (i.e., octets with values 0x00 to 0x7F) and encodes them with their ASCII value.

The type’s name is derived from the name used in ASN.1. It is derived from the name IA5 or International Alphabet No. 5 which is the ITU name for ASCII and is specified in ITU.T recommendation T.50.

See RestrictedString for more details on restricged character strings in general.