2 writes to _hmac
System.Security.Cryptography (2)
System\Security\Cryptography\IncrementalHash.cs (2)
44
_hmac
= hmac;
306
_hmac
= null;
11 references to _hmac
System.Security.Cryptography (11)
System\Security\Cryptography\IncrementalHash.cs (11)
45
HashLengthInBytes =
_hmac
.HashSizeInBytes;
104
Debug.Assert((_hash != null) ^ (
_hmac
!= null));
111
_hmac
!.AppendHashData(data);
177
Debug.Assert((_hash != null) ^ (
_hmac
!= null));
180
_hmac
!.FinalizeHashAndReset(destination);
267
Debug.Assert((_hash != null) ^ (
_hmac
!= null));
270
_hmac
!.GetCurrentHash(destination);
282
Debug.Assert((_hash != null) ^ (
_hmac
!= null));
286
new IncrementalHash(_algorithmName,
_hmac
!.Clone());
303
if (
_hmac
!= null)
305
_hmac
.Dispose(true);