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

◆ HMACCommon() [1/2]

Internal.Cryptography.HMACCommon.HMACCommon ( string hashAlgorithmId,
byte[] key,
int blockSize )
inline

Definition at line 22 of file HMACCommon.cs.

23 : this(hashAlgorithmId, (ReadOnlySpan<byte>)key, blockSize)
24 {
25 if (ActualKey == null)
26 {
27 byte[] array2 = (ActualKey = key);
28 }
29 }

References Internal.Cryptography.HMACCommon.ActualKey, and System.key.