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

◆ Key

CngKey System.Security.Cryptography.DSACng.Key
getprivate set

Definition at line 21 of file DSACng.cs.

22 {
23 get
24 {
26 }
27 private set
28 {
29 if (value.AlgorithmGroup != CngAlgorithmGroup.Dsa)
30 {
32 }
34 ForceSetKeySize(value.KeySize);
35 }
36 }
static string Cryptography_ArgDSARequiresDSAKey
Definition SR.cs:34
Definition SR.cs:7
void ForceSetKeySize(int newKeySize)
Definition DSACng.cs:127
readonly CngAlgorithm _dsnCng
Definition DSACng.cs:12
CngKey GetOrGenerateKey(int keySize, CngAlgorithm algorithm)

Referenced by System.Security.Cryptography.DSACng.DSACng(), System.Security.Cryptography.DSACng.ExportEncryptedPkcs8(), System.Security.Cryptography.DSACng.ExportKeyBlob(), System.Security.Cryptography.DSACng.GetDuplicatedKeyHandle(), System.Security.Cryptography.DSACng.ImportKeyBlob(), System.Security.Cryptography.DSACng.TryExportEncryptedPkcs8(), and System.Security.Cryptography.DSACng.TryExportPkcs8PrivateKey().