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

◆ Mode [2/2]

virtual CipherMode System.Security.Cryptography.SymmetricAlgorithm.Mode
getsetinherited

Definition at line 136 of file SymmetricAlgorithm.cs.

137 {
138 get
139 {
140 return ModeValue;
141 }
142 set
143 {
144 if (value != CipherMode.CBC && value != CipherMode.ECB && value != CipherMode.CFB)
145 {
146 throw new CryptographicException(System.SR.Cryptography_InvalidCipherMode);
147 }
149 }
150 }
static string Cryptography_InvalidCipherMode
Definition SR.cs:54
Definition SR.cs:7