2 writes to _hMacCommon
System.Security.Cryptography (2)
System\Security\Cryptography\HMACSHA512.cs (2)
47_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA512, key, BlockSize); 413_hMacCommon = null!;
10 references to _hMacCommon
System.Security.Cryptography (10)
System\Security\Cryptography\HMACSHA512.cs (10)
48base.Key = _hMacCommon.ActualKey!; 51HashSizeValue = _hMacCommon.HashSizeInBits; 79_hMacCommon.ChangeKey(value); 80base.Key = _hMacCommon.ActualKey!; 85_hMacCommon.AppendHashData(rgb, ib, cb); 88_hMacCommon.AppendHashData(source); 91_hMacCommon.FinalizeHashAndReset(); 94_hMacCommon.TryFinalizeHashAndReset(destination, out bytesWritten); 96public override void Initialize() => _hMacCommon.Reset(); 410HMACCommon hMacCommon = _hMacCommon;