We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 960dbed commit 627ad12Copy full SHA for 627ad12
1 file changed
Asn1Parser/Universal/Asn1String.cs
@@ -88,6 +88,9 @@ public static Asn1String DecodeAnyString(Byte[] rawData, IEnumerable<Asn1Type> a
88
return new Asn1BMPString(rawData);
89
case Asn1Type.TeletexString:
90
return new Asn1TeletexString(rawData);
91
+ case Asn1Type.NumericString:
92
+ return new Asn1NumericString(rawData);
93
+
94
default:
95
throw new Asn1InvalidTagException("Input data is not valid string.");
96
}
0 commit comments