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

◆ IsECNamedCurve() [2/2]

static bool System.Security.Cryptography.CngKey.IsECNamedCurve ( string algorithm)
inlinestaticpackage

Definition at line 441 of file CngKey.cs.

442 {
443 if (!(algorithm == CngAlgorithm.ECDiffieHellman.Algorithm))
444 {
445 return algorithm == CngAlgorithm.ECDsa.Algorithm;
446 }
447 return true;
448 }

References System.Security.Cryptography.CngAlgorithm.ECDiffieHellman, and System.Security.Cryptography.CngAlgorithm.ECDsa.