2 writes to _hMacCommon
System.Security.Cryptography (2)
System\Security\Cryptography\HMACMD5.cs (2)
42
_hMacCommon
= new HMACCommon(HashAlgorithmNames.MD5, key, BlockSize);
346
_hMacCommon
= null!;
10 references to _hMacCommon
System.Security.Cryptography (10)
System\Security\Cryptography\HMACMD5.cs (10)
43
base.Key =
_hMacCommon
.ActualKey!;
47
HashSizeValue =
_hMacCommon
.HashSizeInBits;
60
_hMacCommon
.ChangeKey(value);
61
base.Key =
_hMacCommon
.ActualKey!;
66
_hMacCommon
.AppendHashData(rgb, ib, cb);
69
_hMacCommon
.AppendHashData(source);
72
_hMacCommon
.FinalizeHashAndReset();
75
_hMacCommon
.TryFinalizeHashAndReset(destination, out bytesWritten);
77
public override void Initialize() =>
_hMacCommon
.Reset();
343
HMACCommon hMacCommon =
_hMacCommon
;