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

◆ AlgorithmGroup

CngAlgorithmGroup? System.Security.Cryptography.CngKey.AlgorithmGroup
get

Definition at line 26 of file CngKey.cs.

27 {
28 get
29 {
30 string propertyAsString = _keyHandle.GetPropertyAsString("Algorithm Group", CngPropertyOptions.None);
31 if (propertyAsString == null)
32 {
33 return null;
34 }
35 return new CngAlgorithmGroup(propertyAsString);
36 }
37 }
readonly SafeNCryptKeyHandle _keyHandle
Definition CngKey.cs:11

Referenced by System.Security.Cryptography.ECDiffieHellmanCng.DeriveKeyMaterial(), System.Security.Cryptography.ECDiffieHellmanCng.DeriveSecretAgreementHandle(), and System.Security.Cryptography.CngPkcs8.Pkcs8Response.GetAlgorithmGroup().