Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Salt
byte [] System.Security.Cryptography.Rfc2898DeriveBytes.Salt
get
set
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
}
System.Security.Cryptography.Rfc2898DeriveBytes.Initialize
void Initialize()
Definition
Rfc2898DeriveBytes.cs:247
System.Security.Cryptography.Rfc2898DeriveBytes._salt
byte[] _salt
Definition
Rfc2898DeriveBytes.cs:12
System.ExceptionArgument.value
@ value
System
Security
Cryptography
Rfc2898DeriveBytes
Generated by
1.10.0