2 writes to _hMacCommon
System.Security.Cryptography (2)
System\Security\Cryptography\HMACSHA3_512.cs (2)
64_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA3_512, key, BlockSize); 377_hMacCommon = null!;
10 references to _hMacCommon
System.Security.Cryptography (10)
System\Security\Cryptography\HMACSHA3_512.cs (10)
65base.Key = _hMacCommon.ActualKey!; 68Debug.Assert(HashSizeValue == _hMacCommon.HashSizeInBits); 89_hMacCommon.ChangeKey(value); 90base.Key = _hMacCommon.ActualKey!; 96_hMacCommon.AppendHashData(rgb, ib, cb); 100_hMacCommon.AppendHashData(source); 104_hMacCommon.FinalizeHashAndReset(); 108_hMacCommon.TryFinalizeHashAndReset(destination, out bytesWritten); 111public override void Initialize() => _hMacCommon.Reset(); 374HMACCommon hMacCommon = _hMacCommon;