2 writes to _hMacCommon
System.Security.Cryptography (2)
System\Security\Cryptography\HMACSHA1.cs (2)
41
_hMacCommon
= new HMACCommon(HashAlgorithmNames.SHA1, key, BlockSize);
342
_hMacCommon
= null!;
10 references to _hMacCommon
System.Security.Cryptography (10)
System\Security\Cryptography\HMACSHA1.cs (10)
42
base.Key =
_hMacCommon
.ActualKey!;
46
HashSizeValue =
_hMacCommon
.HashSizeInBits;
66
_hMacCommon
.ChangeKey(value);
67
base.Key =
_hMacCommon
.ActualKey!;
72
_hMacCommon
.AppendHashData(rgb, ib, cb);
75
_hMacCommon
.AppendHashData(source);
78
_hMacCommon
.FinalizeHashAndReset();
81
_hMacCommon
.TryFinalizeHashAndReset(destination, out bytesWritten);
83
public override void Initialize() =>
_hMacCommon
.Reset();
339
HMACCommon hMacCommon =
_hMacCommon
;