Add the missing N character.

This commit is contained in:
Seinlin Li
2021-02-25 01:33:17 -08:00
parent 90d24b6d89
commit 1903cb6ab5

View File

@@ -279,7 +279,7 @@ macro_rules! oid {
} }
const PRINTABLE_CHARS: &'static str = const PRINTABLE_CHARS: &'static str =
"ABCDEFGHIJKLMOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'()+,-./:=? "; "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'()+,-./:=? ";
/// An error that can arise decoding ASN.1 primitive blocks. /// An error that can arise decoding ASN.1 primitive blocks.
#[derive(Clone, Debug, Error, PartialEq)] #[derive(Clone, Debug, Error, PartialEq)]