Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Key
override byte [] System.Security.Cryptography.HMACSHA256.Key
get
set
Definition at line
11
of file
HMACSHA256.cs
.
12
{
13
get
14
{
15
return
base.Key;
16
}
17
set
18
{
19
if
(
value
==
null
)
20
{
21
throw
new
ArgumentNullException(
"value"
);
22
}
23
_hMacCommon
.
ChangeKey
(
value
);
24
base.Key =
_hMacCommon
.
ActualKey
;
25
}
26
}
Internal.Cryptography.HMACCommon.ChangeKey
void ChangeKey(byte[] key)
Definition
HMACCommon.cs:38
Internal.Cryptography.HMACCommon.ActualKey
byte[] ActualKey
Definition
HMACCommon.cs:20
System.Security.Cryptography.HMACSHA256._hMacCommon
HMACCommon _hMacCommon
Definition
HMACSHA256.cs:9
System.ExceptionArgument.value
@ value
System
Security
Cryptography
HMACSHA256
Generated by
1.10.0