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

◆ Key

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

Definition at line 25 of file ECDsaCng.cs.

26 {
27 get
28 {
29 return GetKey();
30 }
31 private set
32 {
33 if (value == null)
34 {
35 throw new ArgumentNullException("value");
36 }
37 if (!IsEccAlgorithmGroup(value.AlgorithmGroup))
38 {
40 }
42 ForceSetKeySize(value.KeySize);
43 }
44 }
static string Cryptography_ArgECDsaRequiresECDsaKey
Definition SR.cs:36
Definition SR.cs:7
static bool IsEccAlgorithmGroup(CngAlgorithmGroup algorithmGroup)
Definition ECDsaCng.cs:96
void ForceSetKeySize(int newKeySize)
Definition ECDsaCng.cs:441

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