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

◆ Oid

Oid System.Security.Cryptography.ECCurve.Oid
getprivate set

Definition at line 79 of file ECCurve.cs.

80 {
81 get
82 {
83 return _oid;
84 }
85 private set
86 {
87 if (value == null)
88 {
89 throw new ArgumentNullException("Oid");
90 }
91 if (string.IsNullOrEmpty(value.Value) && string.IsNullOrEmpty(value.FriendlyName))
92 {
94 }
95 _oid = value;
96 }
97 }
static string Cryptography_InvalidCurveOid
Definition SR.cs:66
Definition SR.cs:7

Referenced by System.Security.Cryptography.X509Certificates.ECDsaX509SignatureGenerator.BuildPublicKey(), System.Security.Cryptography.ECCurve.CreateFromValueAndName(), System.Security.Cryptography.ECCngKey.GenerateKey(), System.Security.Cryptography.ECDiffieHellmanCng.GenerateKey(), System.Security.Cryptography.ECDsaCng.GenerateKey(), Internal.Cryptography.CngAlgorithmCore.GetOrGenerateKey(), System.Security.Cryptography.CngKey.GetPropertyFromNamedCurve(), System.Security.Cryptography.ECDiffieHellmanImplementation.ECDiffieHellmanCng.ImportParameters(), System.Security.Cryptography.ECDsaImplementation.ECDsaCng.ImportParameters(), System.Security.Cryptography.ECDiffieHellmanCng.ImportParameters(), System.Security.Cryptography.ECDsaCng.ImportParameters(), and System.Security.Cryptography.EccKeyFormatHelper.WriteEcParameters().