2 writes to _hMacCommon
System.Security.Cryptography (2)
System\Security\Cryptography\HMACSHA512.cs (2)
40_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA512, key, BlockSize); 348_hMacCommon = null!;
10 references to _hMacCommon
System.Security.Cryptography (10)
System\Security\Cryptography\HMACSHA512.cs (10)
41base.Key = _hMacCommon.ActualKey!; 44HashSizeValue = _hMacCommon.HashSizeInBits; 72_hMacCommon.ChangeKey(value); 73base.Key = _hMacCommon.ActualKey!; 78_hMacCommon.AppendHashData(rgb, ib, cb); 81_hMacCommon.AppendHashData(source); 84_hMacCommon.FinalizeHashAndReset(); 87_hMacCommon.TryFinalizeHashAndReset(destination, out bytesWritten); 89public override void Initialize() => _hMacCommon.Reset(); 345HMACCommon hMacCommon = _hMacCommon;