Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Key
override byte [] System.Security.Cryptography.HMACSHA1.Key
get
set
Definition at line
12
of file
HMACSHA1.cs
.
13
{
14
get
15
{
16
return
base.Key;
17
}
18
set
19
{
20
if
(
value
==
null
)
21
{
22
throw
new
ArgumentNullException(
"value"
);
23
}
24
_hMacCommon
.
ChangeKey
(
value
);
25
base.Key =
_hMacCommon
.
ActualKey
;
26
}
27
}
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.HMACSHA1._hMacCommon
HMACCommon _hMacCommon
Definition
HMACSHA1.cs:10
System.ExceptionArgument.value
@ value
System
Security
Cryptography
HMACSHA1
Generated by
1.10.0