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

◆ CreateHMAC() [1/2]

static IncrementalHash System.Security.Cryptography.IncrementalHash.CreateHMAC ( HashAlgorithmName hashAlgorithm,
byte[] key )
inlinestatic

Definition at line 205 of file IncrementalHash.cs.

206 {
207 if (key == null)
208 {
209 throw new ArgumentNullException("key");
210 }
211 return CreateHMAC(hashAlgorithm, (ReadOnlySpan<byte>)key);
212 }
static IncrementalHash CreateHMAC(HashAlgorithmName hashAlgorithm, byte[] key)

References System.Security.Cryptography.IncrementalHash.CreateHMAC(), and System.key.

Referenced by System.Security.Cryptography.IncrementalHash.CreateHMAC(), and System.Security.Cryptography.HKDF.Expand().