2 writes to _hMacCommon
System.Security.Cryptography (2)
System\Security\Cryptography\HMACSHA256.cs (2)
40
_hMacCommon
= new HMACCommon(HashAlgorithmNames.SHA256, key, BlockSize);
334
_hMacCommon
= null!;
10 references to _hMacCommon
System.Security.Cryptography (10)
System\Security\Cryptography\HMACSHA256.cs (10)
41
base.Key =
_hMacCommon
.ActualKey!;
45
HashSizeValue =
_hMacCommon
.HashSizeInBits;
58
_hMacCommon
.ChangeKey(value);
59
base.Key =
_hMacCommon
.ActualKey!;
64
_hMacCommon
.AppendHashData(rgb, ib, cb);
67
_hMacCommon
.AppendHashData(source);
70
_hMacCommon
.FinalizeHashAndReset();
73
_hMacCommon
.TryFinalizeHashAndReset(destination, out bytesWritten);
75
public override void Initialize() =>
_hMacCommon
.Reset();
331
HMACCommon hMacCommon =
_hMacCommon
;