From 1903cb6ab5ab1819d6b32e26b0d0a017fcda5e07 Mon Sep 17 00:00:00 2001 From: Seinlin Li Date: Thu, 25 Feb 2021 01:33:17 -0800 Subject: [PATCH] Add the missing N character. --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index b0e4ff5..c5ebe1a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -279,7 +279,7 @@ macro_rules! oid { } const PRINTABLE_CHARS: &'static str = - "ABCDEFGHIJKLMOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'()+,-./:=? "; + "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'()+,-./:=? "; /// An error that can arise decoding ASN.1 primitive blocks. #[derive(Clone, Debug, Error, PartialEq)]