2 writes to _hMacCommon
System.Security.Cryptography (2)
System\Security\Cryptography\HMACSHA1.cs (2)
48
_hMacCommon
= new HMACCommon(HashAlgorithmNames.SHA1, key, BlockSize);
407
_hMacCommon
= null!;
10 references to _hMacCommon
System.Security.Cryptography (10)
System\Security\Cryptography\HMACSHA1.cs (10)
49
base.Key =
_hMacCommon
.ActualKey!;
53
HashSizeValue =
_hMacCommon
.HashSizeInBits;
73
_hMacCommon
.ChangeKey(value);
74
base.Key =
_hMacCommon
.ActualKey!;
79
_hMacCommon
.AppendHashData(rgb, ib, cb);
82
_hMacCommon
.AppendHashData(source);
85
_hMacCommon
.FinalizeHashAndReset();
88
_hMacCommon
.TryFinalizeHashAndReset(destination, out bytesWritten);
90
public override void Initialize() =>
_hMacCommon
.Reset();
404
HMACCommon hMacCommon =
_hMacCommon
;