2 writes to _hMacCommon
System.Security.Cryptography (2)
System\Security\Cryptography\HMACSHA256.cs (2)
40_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA256, key, BlockSize); 334_hMacCommon = null!;
10 references to _hMacCommon
System.Security.Cryptography (10)
System\Security\Cryptography\HMACSHA256.cs (10)
41base.Key = _hMacCommon.ActualKey!; 45HashSizeValue = _hMacCommon.HashSizeInBits; 58_hMacCommon.ChangeKey(value); 59base.Key = _hMacCommon.ActualKey!; 64_hMacCommon.AppendHashData(rgb, ib, cb); 67_hMacCommon.AppendHashData(source); 70_hMacCommon.FinalizeHashAndReset(); 73_hMacCommon.TryFinalizeHashAndReset(destination, out bytesWritten); 75public override void Initialize() => _hMacCommon.Reset(); 331HMACCommon hMacCommon = _hMacCommon;