2 writes to _hMacCommon
System.Security.Cryptography (2)
System\Security\Cryptography\HMACSHA256.cs (2)
47
_hMacCommon
= new HMACCommon(HashAlgorithmNames.SHA256, key, BlockSize);
399
_hMacCommon
= null!;
10 references to _hMacCommon
System.Security.Cryptography (10)
System\Security\Cryptography\HMACSHA256.cs (10)
48
base.Key =
_hMacCommon
.ActualKey!;
52
HashSizeValue =
_hMacCommon
.HashSizeInBits;
65
_hMacCommon
.ChangeKey(value);
66
base.Key =
_hMacCommon
.ActualKey!;
71
_hMacCommon
.AppendHashData(rgb, ib, cb);
74
_hMacCommon
.AppendHashData(source);
77
_hMacCommon
.FinalizeHashAndReset();
80
_hMacCommon
.TryFinalizeHashAndReset(destination, out bytesWritten);
82
public override void Initialize() =>
_hMacCommon
.Reset();
396
HMACCommon hMacCommon =
_hMacCommon
;