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

◆ KeySize

override int System.Security.Cryptography.RC2.KeySize
getsetinherited

Definition at line 24 of file RC2.cs.

25 {
26 get
27 {
28 return KeySizeValue;
29 }
30 set
31 {
33 {
34 throw new CryptographicException(System.SR.Cryptography_RC2_EKSKS);
35 }
36 base.KeySize = value;
37 }
38 }
static string Cryptography_RC2_EKSKS
Definition SR.cs:132
Definition SR.cs:7

Referenced by Internal.Cryptography.RC2Implementation.GenerateKey().