2 writes to _hMacCommon
System.Security.Cryptography (2)
System\Security\Cryptography\HMACSHA3_256.cs (2)
71
_hMacCommon
= new HMACCommon(HashAlgorithmNames.SHA3_256, key, BlockSize);
445
_hMacCommon
= null!;
10 references to _hMacCommon
System.Security.Cryptography (10)
System\Security\Cryptography\HMACSHA3_256.cs (10)
72
base.Key =
_hMacCommon
.ActualKey!;
75
Debug.Assert(HashSizeValue ==
_hMacCommon
.HashSizeInBits);
96
_hMacCommon
.ChangeKey(value);
97
base.Key =
_hMacCommon
.ActualKey!;
103
_hMacCommon
.AppendHashData(rgb, ib, cb);
107
_hMacCommon
.AppendHashData(source);
111
_hMacCommon
.FinalizeHashAndReset();
115
_hMacCommon
.TryFinalizeHashAndReset(destination, out bytesWritten);
118
public override void Initialize() =>
_hMacCommon
.Reset();
442
HMACCommon hMacCommon =
_hMacCommon
;