2 writes to _hMacCommon
System.Security.Cryptography (2)
System\Security\Cryptography\HMACSHA1.cs (2)
41_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA1, key, BlockSize); 342_hMacCommon = null!;
10 references to _hMacCommon
System.Security.Cryptography (10)
System\Security\Cryptography\HMACSHA1.cs (10)
42base.Key = _hMacCommon.ActualKey!; 46HashSizeValue = _hMacCommon.HashSizeInBits; 66_hMacCommon.ChangeKey(value); 67base.Key = _hMacCommon.ActualKey!; 72_hMacCommon.AppendHashData(rgb, ib, cb); 75_hMacCommon.AppendHashData(source); 78_hMacCommon.FinalizeHashAndReset(); 81_hMacCommon.TryFinalizeHashAndReset(destination, out bytesWritten); 83public override void Initialize() => _hMacCommon.Reset(); 339HMACCommon hMacCommon = _hMacCommon;