2 writes to _hMacCommon
System.Security.Cryptography (2)
System\Security\Cryptography\HMACMD5.cs (2)
52
_hMacCommon
= new HMACCommon(HashAlgorithmNames.MD5, key, BlockSize);
420
_hMacCommon
= null!;
10 references to _hMacCommon
System.Security.Cryptography (10)
System\Security\Cryptography\HMACMD5.cs (10)
53
base.Key =
_hMacCommon
.ActualKey!;
57
HashSizeValue =
_hMacCommon
.HashSizeInBits;
70
_hMacCommon
.ChangeKey(value);
71
base.Key =
_hMacCommon
.ActualKey!;
76
_hMacCommon
.AppendHashData(rgb, ib, cb);
79
_hMacCommon
.AppendHashData(source);
82
_hMacCommon
.FinalizeHashAndReset();
85
_hMacCommon
.TryFinalizeHashAndReset(destination, out bytesWritten);
87
public override void Initialize() =>
_hMacCommon
.Reset();
417
HMACCommon hMacCommon =
_hMacCommon
;