License | BSD-style |
---|---|
Maintainer | Vincent Hanquez <vincent@snarc.org> |
Stability | experimental |
Portability | unknown |
Safe Haskell | Safe |
Language | Haskell98 |
Different String types available in ASN1
Documentation
data ASN1StringEncoding Source
Define all possible ASN1 String encoding.
IA5 | 128 characters equivalent to the ASCII alphabet |
UTF8 | UTF8 |
General | all registered graphic and character sets (see ISO 2375) plus SPACE and DELETE. |
Graphic | all registered G sets and SPACE |
Numeric | encoding containing numeric [0-9] and space |
Printable | printable [a-z] [A-Z] [()+,-.?:/=] and space. |
VideoTex | CCITT's T.100 and T.101 character sets |
Visible | International ASCII printing character sets |
T61 | teletext |
UTF32 | UTF32 |
Character | Character |
BMP | UCS2 |
data ASN1CharacterString Source
ASN1 Character String with encoding
asn1CharacterString :: ASN1StringEncoding -> String -> ASN1CharacterString Source
encode a string into a character string
asn1CharacterToString :: ASN1CharacterString -> Maybe String Source
try to decode an ASN1CharacterString
to a String