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

◆ Salt

byte [] System.Security.Cryptography.Rfc2898DeriveBytes.Salt
getset

Definition at line 49 of file Rfc2898DeriveBytes.cs.

50 {
51 get
52 {
53 return _salt.AsSpan(0, _salt.Length - 4).ToArray();
54 }
55 set
56 {
57 if (value == null)
58 {
59 throw new ArgumentNullException("value");
60 }
61 _salt = new byte[value.Length + 4];
62 value.AsSpan().CopyTo(_salt);
63 Initialize();
64 }
65 }