From 47dea6611ca359cda8f18d2cb228692f1711d73d Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Sun, 2 May 2021 00:46:36 +0200 Subject: [PATCH] Add Set and UTF8String DER tags. --- src/io/der.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/io/der.rs b/src/io/der.rs index 1a00d85999..d7dfe79e75 100644 --- a/src/io/der.rs +++ b/src/io/der.rs @@ -31,7 +31,9 @@ pub enum Tag { OctetString = 0x04, Null = 0x05, OID = 0x06, + UTF8String = 0x0C, Sequence = CONSTRUCTED | 0x10, // 0x30 + Set = CONSTRUCTED | 0x11, // 0x31 UTCTime = 0x17, GeneralizedTime = 0x18,