2 writes to _hMacCommon
System.Security.Cryptography (2)
System\Security\Cryptography\HMACMD5.cs (2)
42_hMacCommon = new HMACCommon(HashAlgorithmNames.MD5, key, BlockSize); 346_hMacCommon = null!;
10 references to _hMacCommon
System.Security.Cryptography (10)
System\Security\Cryptography\HMACMD5.cs (10)
43base.Key = _hMacCommon.ActualKey!; 47HashSizeValue = _hMacCommon.HashSizeInBits; 60_hMacCommon.ChangeKey(value); 61base.Key = _hMacCommon.ActualKey!; 66_hMacCommon.AppendHashData(rgb, ib, cb); 69_hMacCommon.AppendHashData(source); 72_hMacCommon.FinalizeHashAndReset(); 75_hMacCommon.TryFinalizeHashAndReset(destination, out bytesWritten); 77public override void Initialize() => _hMacCommon.Reset(); 343HMACCommon hMacCommon = _hMacCommon;