2 writes to _hMacCommon
System.Security.Cryptography (2)
System\Security\Cryptography\HMACSHA3_256.cs (2)
71_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA3_256, key, BlockSize); 445_hMacCommon = null!;
10 references to _hMacCommon
System.Security.Cryptography (10)
System\Security\Cryptography\HMACSHA3_256.cs (10)
72base.Key = _hMacCommon.ActualKey!; 75Debug.Assert(HashSizeValue == _hMacCommon.HashSizeInBits); 96_hMacCommon.ChangeKey(value); 97base.Key = _hMacCommon.ActualKey!; 103_hMacCommon.AppendHashData(rgb, ib, cb); 107_hMacCommon.AppendHashData(source); 111_hMacCommon.FinalizeHashAndReset(); 115_hMacCommon.TryFinalizeHashAndReset(destination, out bytesWritten); 118public override void Initialize() => _hMacCommon.Reset(); 442HMACCommon hMacCommon = _hMacCommon;