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

◆ BlockSize

override int System.Security.Cryptography.RijndaelManaged.BlockSize
getset

Definition at line 13 of file RijndaelManaged.cs.

14 {
15 get
16 {
17 return _impl.BlockSize;
18 }
19 set
20 {
21 switch (value)
22 {
23 case 192:
24 case 256:
25 throw new PlatformNotSupportedException(System.SR.Cryptography_Rijndael_BlockSize);
26 default:
27 throw new CryptographicException(System.SR.Cryptography_Rijndael_BlockSize);
28 case 128:
29 break;
30 }
31 }
32 }
static string Cryptography_Rijndael_BlockSize
Definition SR.cs:136
Definition SR.cs:7