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{
8 {
9 try
10 {
11 writer.WriteEncodedValue(value);
12 }
13 catch (ArgumentException inner)
14 {
16 }
17 }
18
19 internal static void WriteObjectIdentifierForCrypto(this AsnWriter writer, string value)
20 {
21 try
22 {
23 writer.WriteObjectIdentifier(value);
24 }
25 catch (ArgumentException inner)
26 {
28 }
29 }
30}
static void WriteObjectIdentifierForCrypto(this AsnWriter writer, string value)
static void WriteEncodedValueForCrypto(this AsnWriter writer, ReadOnlySpan< byte > value)
static string Cryptography_Der_Invalid_Encoding
Definition SR.cs:50
Definition SR.cs:7