2 writes to _hMacCommon
System.Security.Cryptography (2)
System\Security\Cryptography\HMACSHA384.cs (2)
40
_hMacCommon
= new HMACCommon(HashAlgorithmNames.SHA384, key, BlockSize);
351
_hMacCommon
= null!;
10 references to _hMacCommon
System.Security.Cryptography (10)
System\Security\Cryptography\HMACSHA384.cs (10)
41
base.Key =
_hMacCommon
.ActualKey!;
44
HashSizeValue =
_hMacCommon
.HashSizeInBits;
75
_hMacCommon
.ChangeKey(value);
76
base.Key =
_hMacCommon
.ActualKey!;
81
_hMacCommon
.AppendHashData(rgb, ib, cb);
84
_hMacCommon
.AppendHashData(source);
87
_hMacCommon
.FinalizeHashAndReset();
90
_hMacCommon
.TryFinalizeHashAndReset(destination, out bytesWritten);
92
public override void Initialize() =>
_hMacCommon
.Reset();
348
HMACCommon hMacCommon =
_hMacCommon
;