2 writes to _hMacCommon
System.Security.Cryptography (2)
System\Security\Cryptography\HMACSHA512.cs (2)
47
_hMacCommon
= new HMACCommon(HashAlgorithmNames.SHA512, key, BlockSize);
413
_hMacCommon
= null!;
10 references to _hMacCommon
System.Security.Cryptography (10)
System\Security\Cryptography\HMACSHA512.cs (10)
48
base.Key =
_hMacCommon
.ActualKey!;
51
HashSizeValue =
_hMacCommon
.HashSizeInBits;
79
_hMacCommon
.ChangeKey(value);
80
base.Key =
_hMacCommon
.ActualKey!;
85
_hMacCommon
.AppendHashData(rgb, ib, cb);
88
_hMacCommon
.AppendHashData(source);
91
_hMacCommon
.FinalizeHashAndReset();
94
_hMacCommon
.TryFinalizeHashAndReset(destination, out bytesWritten);
96
public override void Initialize() =>
_hMacCommon
.Reset();
410
HMACCommon hMacCommon =
_hMacCommon
;