We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 77e10aa + 9ba0214 commit 95c800cCopy full SHA for 95c800c
1 file changed
Kerberos.NET/Asn1/Experimental/GeneralStringEncoding.cs
@@ -3,9 +3,12 @@
3
// The .NET Foundation licenses this file to you under the MIT license.
4
// -----------------------------------------------------------------------
5
6
+using System.Text;
7
+
8
namespace System.Security.Cryptography.Asn1
9
{
- internal class GeneralStringEncoding : IA5Encoding
10
+ internal class GeneralStringEncoding : UTF8Encoding
11
12
+ public GeneralStringEncoding(): base(false, throwOnInvalidBytes: true) { }
13
}
14
0 commit comments