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

◆ KeySize

override int System.Security.Cryptography.ECDsaCng.KeySize
getset

Definition at line 46 of file ECDsaCng.cs.

47 {
48 get
49 {
50 return base.KeySize;
51 }
52 set
53 {
54 if (KeySize != value)
55 {
56 base.KeySize = value;
57 DisposeKey();
58 }
59 }
60 }

Referenced by System.Security.Cryptography.ECDsaCng.ECDsaCng(), System.Security.Cryptography.ECDsaCng.GetKey(), and System.Security.Cryptography.ECDsaCng.SignHash().