2 writes to _hMacCommon
System.Security.Cryptography (2)
System\Security\Cryptography\HMACMD5.cs (2)
52_hMacCommon = new HMACCommon(HashAlgorithmNames.MD5, key, BlockSize); 420_hMacCommon = null!;
10 references to _hMacCommon
System.Security.Cryptography (10)
System\Security\Cryptography\HMACMD5.cs (10)
53base.Key = _hMacCommon.ActualKey!; 57HashSizeValue = _hMacCommon.HashSizeInBits; 70_hMacCommon.ChangeKey(value); 71base.Key = _hMacCommon.ActualKey!; 76_hMacCommon.AppendHashData(rgb, ib, cb); 79_hMacCommon.AppendHashData(source); 82_hMacCommon.FinalizeHashAndReset(); 85_hMacCommon.TryFinalizeHashAndReset(destination, out bytesWritten); 87public override void Initialize() => _hMacCommon.Reset(); 417HMACCommon hMacCommon = _hMacCommon;