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

◆ Key

override byte [] System.Security.Cryptography.HMACSHA256.Key
getset

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 }
24 base.Key = _hMacCommon.ActualKey;
25 }
26 }