2 writes to _hMacCommon
System.Security.Cryptography (2)
System\Security\Cryptography\HMACSHA512.cs (2)
40
_hMacCommon
= new HMACCommon(HashAlgorithmNames.SHA512, key, BlockSize);
348
_hMacCommon
= null!;
10 references to _hMacCommon
System.Security.Cryptography (10)
System\Security\Cryptography\HMACSHA512.cs (10)
41
base.Key =
_hMacCommon
.ActualKey!;
44
HashSizeValue =
_hMacCommon
.HashSizeInBits;
72
_hMacCommon
.ChangeKey(value);
73
base.Key =
_hMacCommon
.ActualKey!;
78
_hMacCommon
.AppendHashData(rgb, ib, cb);
81
_hMacCommon
.AppendHashData(source);
84
_hMacCommon
.FinalizeHashAndReset();
87
_hMacCommon
.TryFinalizeHashAndReset(destination, out bytesWritten);
89
public override void Initialize() =>
_hMacCommon
.Reset();
345
HMACCommon hMacCommon =
_hMacCommon
;