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

◆ HashData() [1/3]

static byte[] System.Security.Cryptography.HMACSHA1.HashData ( byte[] key,
byte[] source )
inlinestatic

Definition at line 79 of file HMACSHA1.cs.

80 {
81 if (key == null)
82 {
83 throw new ArgumentNullException("key");
84 }
85 if (source == null)
86 {
87 throw new ArgumentNullException("source");
88 }
89 return HashData(new ReadOnlySpan<byte>(key), new ReadOnlySpan<byte>(source));
90 }
static byte[] HashData(byte[] key, byte[] source)
Definition HMACSHA1.cs:79

References System.Security.Cryptography.HMACSHA1.HashData(), System.key, and System.source.

Referenced by System.Security.Cryptography.HMACSHA1.HashData(), System.Security.Cryptography.HMACSHA1.HashData(), and System.Security.Cryptography.HashOneShotHelpers.MacData().