2 writes to _hMacCommon
System.Security.Cryptography (2)
System\Security\Cryptography\HMACSHA384.cs (2)
40_hMacCommon = new HMACCommon(HashAlgorithmNames.SHA384, key, BlockSize); 351_hMacCommon = null!;
10 references to _hMacCommon
System.Security.Cryptography (10)
System\Security\Cryptography\HMACSHA384.cs (10)
41base.Key = _hMacCommon.ActualKey!; 44HashSizeValue = _hMacCommon.HashSizeInBits; 75_hMacCommon.ChangeKey(value); 76base.Key = _hMacCommon.ActualKey!; 81_hMacCommon.AppendHashData(rgb, ib, cb); 84_hMacCommon.AppendHashData(source); 87_hMacCommon.FinalizeHashAndReset(); 90_hMacCommon.TryFinalizeHashAndReset(destination, out bytesWritten); 92public override void Initialize() => _hMacCommon.Reset(); 348HMACCommon hMacCommon = _hMacCommon;