Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
AsnWriterExtensions.cs
Go to the documentation of this file.
2
3namespace System.Formats.Asn1;
4
5internal static class AsnWriterExtensions
6{
7 internal static void WriteObjectIdentifierForCrypto(this AsnWriter writer, string value)
8 {
9 try
10 {
11 writer.WriteObjectIdentifier(value);
12 }
13 catch (ArgumentException inner)
14 {
16 }
17 }
18}
static void WriteObjectIdentifierForCrypto(this AsnWriter writer, string value)
static string Cryptography_Der_Invalid_Encoding
Definition SR.cs:50
Definition SR.cs:7