2 writes to _hMacCommon
System.Security.Cryptography (2)
System\Security\Cryptography\HMACSHA1.cs (2)
48_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA1, key, BlockSize); 407_hMacCommon = null!;
10 references to _hMacCommon
System.Security.Cryptography (10)
System\Security\Cryptography\HMACSHA1.cs (10)
49base.Key = _hMacCommon.ActualKey!; 53HashSizeValue = _hMacCommon.HashSizeInBits; 73_hMacCommon.ChangeKey(value); 74base.Key = _hMacCommon.ActualKey!; 79_hMacCommon.AppendHashData(rgb, ib, cb); 82_hMacCommon.AppendHashData(source); 85_hMacCommon.FinalizeHashAndReset(); 88_hMacCommon.TryFinalizeHashAndReset(destination, out bytesWritten); 90public override void Initialize() => _hMacCommon.Reset(); 404HMACCommon hMacCommon = _hMacCommon;