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

◆ IterationCount

int System.Security.Cryptography.PasswordDeriveBytes.IterationCount
getset

Definition at line 54 of file PasswordDeriveBytes.cs.

55 {
56 get
57 {
58 return _iterations;
59 }
60 set
61 {
62 if (value <= 0)
63 {
64 throw new ArgumentOutOfRangeException("value", System.SR.ArgumentOutOfRange_NeedPosNum);
65 }
66 if (_baseValue != null)
67 {
68 throw new CryptographicException(System.SR.Cryptography_PasswordDerivedBytes_ValuesFixed, "IterationCount");
69 }
71 }
72 }
static string ArgumentOutOfRange_NeedPosNum
Definition SR.cs:20
static string Cryptography_PasswordDerivedBytes_ValuesFixed
Definition SR.cs:62
Definition SR.cs:7

Referenced by System.Security.Cryptography.PasswordDeriveBytes.PasswordDeriveBytes().