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

◆ HasExplicitParameters()

static bool Internal.Cryptography.Pal.X509Pal.HasExplicitParameters ( Microsoft::Win32::SafeHandles::SafeBCryptKeyHandle bcryptHandle)
inlinestaticprivate

Definition at line 416 of file X509Pal.cs.

417 {
418 byte[] property = GetProperty(bcryptHandle, "ECCParameters");
419 if (property != null)
420 {
421 return property.Length != 0;
422 }
423 return false;
424 }
static unsafe byte[] GetProperty(Microsoft.Win32.SafeHandles.SafeBCryptKeyHandle cryptHandle, string propertyName)
Definition X509Pal.cs:444

References Internal.Cryptography.Pal.X509Pal.GetProperty().

Referenced by Internal.Cryptography.Pal.X509Pal.DecodeECPublicKey< TAlgorithm >().