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

◆ GetHashAlgorithmName() [2/2]

static ? HashAlgorithmName System.Security.Cryptography.ECCng.GetHashAlgorithmName ( global::Interop::BCrypt::ECC_CURVE_ALG_ID_ENUM hashId)
inlinestaticpackage

Definition at line 433 of file ECCng.cs.

434 {
435 global::Interop.Crypt32.CRYPT_OID_INFO cRYPT_OID_INFO = global::Interop.Crypt32.FindAlgIdOidInfo(hashId);
436 if (cRYPT_OID_INFO.AlgId == -1)
437 {
438 return null;
439 }
440 return new HashAlgorithmName(cRYPT_OID_INFO.Name);
441 }