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

◆ Key

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

Definition at line 123 of file ECDiffieHellmanCng.cs.

124 {
125 get
126 {
127 return GetKey();
128 }
129 private set
130 {
131 if (value == null)
132 {
133 throw new ArgumentNullException("value");
134 }
135 if (value.AlgorithmGroup != CngAlgorithmGroup.ECDiffieHellman)
136 {
138 }
140 ForceSetKeySize(value.KeySize);
141 }
142 }
static string Cryptography_ArgECDHRequiresECDHKey
Definition SR.cs:42
Definition SR.cs:7

Referenced by System.Security.Cryptography.ECDiffieHellmanCng.ECDiffieHellmanCng(), System.Security.Cryptography.ECDiffieHellmanCng.AcceptImport(), System.Security.Cryptography.ECDiffieHellmanCng.DeriveSecretAgreementHandle(), System.Security.Cryptography.ECDiffieHellmanCng.ExportEncryptedPkcs8(), System.Security.Cryptography.ECDiffieHellmanCng.ExportFullKeyBlob(), System.Security.Cryptography.ECDiffieHellmanCng.ExportKeyBlob(), System.Security.Cryptography.ECDiffieHellmanCng.GetCurveName(), System.Security.Cryptography.ECDiffieHellmanCng.ImportFullKeyBlob(), System.Security.Cryptography.ECDiffieHellmanCng.ImportKeyBlob(), System.Security.Cryptography.ECDiffieHellmanCng.TryExportEncryptedPkcs8(), and System.Security.Cryptography.ECDiffieHellmanCng.TryExportPkcs8PrivateKey().