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

◆ Salt

byte? [] System.Security.Cryptography.PasswordDeriveBytes.Salt
getset

Definition at line 74 of file PasswordDeriveBytes.cs.

75 {
76 get
77 {
78 return (byte[])_salt?.Clone();
79 }
80 set
81 {
82 if (_baseValue != null)
83 {
84 throw new CryptographicException(System.SR.Cryptography_PasswordDerivedBytes_ValuesFixed, "Salt");
85 }
86 _salt = (byte[])value?.Clone();
87 }
88 }
static string Cryptography_PasswordDerivedBytes_ValuesFixed
Definition SR.cs:62
Definition SR.cs:7

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