Taking this out from #690 , #691 and few practical thoughts from my side:
The following string tags are unsupported:
Additionally:
Additionally current API lacks easy to use unified string API (at least for AnyRef). Currently when parsing the string from AnyRef (e.g. in RDN) one has to manually match all the string tags and to use corresponding foo_string() calls. Instead it might be useful to add the is_string() -> bool and to support generic string wrapper around ::printable_string(), ::utf8_string(), ::ia5_string(), etc.
Taking this out from #690 , #691 and few practical thoughts from my side:
The following string tags are unsupported:
Additionally:
chars >= 0x80Additionally current API lacks easy to use unified string API (at least for AnyRef). Currently when parsing the string from AnyRef (e.g. in RDN) one has to manually match all the string tags and to use corresponding
foo_string()calls. Instead it might be useful to add theis_string() -> booland to support generic string wrapper around::printable_string(),::utf8_string(),::ia5_string(), etc.