Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Decode() [3/4]

static void System.Security.Cryptography.Asn1.SubjectPublicKeyInfoAsn.Decode ( ref System::Formats::Asn1::AsnValueReader reader,
Asn1Tag expectedTag,
ReadOnlyMemory< byte > rebind,
out System::Security::Cryptography::Asn1::SubjectPublicKeyInfoAsn decoded )
inlinestaticpackage

Definition at line 29 of file SubjectPublicKeyInfoAsn.cs.

30 {
31 try
32 {
33 DecodeCore(ref reader, expectedTag, rebind, out decoded);
34 }
35 catch (AsnContentException inner)
36 {
37 throw new CryptographicException(System.SR.Cryptography_Der_Invalid_Encoding, inner);
38 }
39 }
static string Cryptography_Der_Invalid_Encoding
Definition SR.cs:50
Definition SR.cs:7
static void DecodeCore(ref AsnValueReader reader, Asn1Tag expectedTag, ReadOnlyMemory< byte > rebind, out SubjectPublicKeyInfoAsn decoded)

References System.SR.Cryptography_Der_Invalid_Encoding, and System.Security.Cryptography.Asn1.SubjectPublicKeyInfoAsn.DecodeCore().