2 writes to _hMacCommon
System.Security.Cryptography (2)
System\Security\Cryptography\HMACSHA3_256.cs (2)
64
_hMacCommon
= new HMACCommon(HashAlgorithmNames.SHA3_256, key, BlockSize);
377
_hMacCommon
= null!;
10 references to _hMacCommon
System.Security.Cryptography (10)
System\Security\Cryptography\HMACSHA3_256.cs (10)
65
base.Key =
_hMacCommon
.ActualKey!;
68
Debug.Assert(HashSizeValue ==
_hMacCommon
.HashSizeInBits);
89
_hMacCommon
.ChangeKey(value);
90
base.Key =
_hMacCommon
.ActualKey!;
96
_hMacCommon
.AppendHashData(rgb, ib, cb);
100
_hMacCommon
.AppendHashData(source);
104
_hMacCommon
.FinalizeHashAndReset();
108
_hMacCommon
.TryFinalizeHashAndReset(destination, out bytesWritten);
111
public override void Initialize() =>
_hMacCommon
.Reset();
374
HMACCommon hMacCommon =
_hMacCommon
;