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

◆ SignatureAlgorithm

unsafe string Internal.Cryptography.Pal.CertificatePal.SignatureAlgorithm
get

Implements Internal.Cryptography.ICertificatePalCore.

Definition at line 93 of file CertificatePal.cs.

94 {
95 get
96 {
98 string result = Marshal.PtrToStringAnsi(certContext->pCertInfo->SignatureAlgorithm.pszObjId);
99 GC.KeepAlive(this);
100 return result;
101 }
102 }
static void KeepAlive(object? obj)
Definition GC.cs:180
Definition GC.cs:8
static unsafe? string PtrToStringAnsi(IntPtr ptr)
Definition Marshal.cs:630