2 writes to _hMacCommon
System.Security.Cryptography (2)
System\Security\Cryptography\HMACSHA256.cs (2)
47_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA256, key, BlockSize); 399_hMacCommon = null!;
10 references to _hMacCommon
System.Security.Cryptography (10)
System\Security\Cryptography\HMACSHA256.cs (10)
48base.Key = _hMacCommon.ActualKey!; 52HashSizeValue = _hMacCommon.HashSizeInBits; 65_hMacCommon.ChangeKey(value); 66base.Key = _hMacCommon.ActualKey!; 71_hMacCommon.AppendHashData(rgb, ib, cb); 74_hMacCommon.AppendHashData(source); 77_hMacCommon.FinalizeHashAndReset(); 80_hMacCommon.TryFinalizeHashAndReset(destination, out bytesWritten); 82public override void Initialize() => _hMacCommon.Reset(); 396HMACCommon hMacCommon = _hMacCommon;