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

◆ Key

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

Definition at line 27 of file HMACSHA384.cs.

28 {
29 get
30 {
31 return base.Key;
32 }
33 set
34 {
35 if (value == null)
36 {
37 throw new ArgumentNullException("value");
38 }
40 base.Key = _hMacCommon.ActualKey;
41 }
42 }