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

◆ Key

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

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