2 writes to _hMacCommon
System.Security.Cryptography (2)
System\Security\Cryptography\HMACSHA384.cs (2)
47
_hMacCommon
= new HMACCommon(HashAlgorithmNames.SHA384, key, BlockSize);
416
_hMacCommon
= null!;
10 references to _hMacCommon
System.Security.Cryptography (10)
System\Security\Cryptography\HMACSHA384.cs (10)
48
base.Key =
_hMacCommon
.ActualKey!;
51
HashSizeValue =
_hMacCommon
.HashSizeInBits;
82
_hMacCommon
.ChangeKey(value);
83
base.Key =
_hMacCommon
.ActualKey!;
88
_hMacCommon
.AppendHashData(rgb, ib, cb);
91
_hMacCommon
.AppendHashData(source);
94
_hMacCommon
.FinalizeHashAndReset();
97
_hMacCommon
.TryFinalizeHashAndReset(destination, out bytesWritten);
99
public override void Initialize() =>
_hMacCommon
.Reset();
413
HMACCommon hMacCommon =
_hMacCommon
;