2 writes to _hash
System.Security.Cryptography (2)
System\Security\Cryptography\IncrementalHash.cs (2)
34
_hash
= hash;
300
_hash
= null;
15 references to _hash
System.Security.Cryptography (15)
System\Security\Cryptography\IncrementalHash.cs (15)
35
HashLengthInBytes =
_hash
.HashSizeInBytes;
104
Debug.Assert((
_hash
!= null) ^ (_hmac != null));
105
if (
_hash
!= null)
107
_hash
.AppendHashData(data);
177
Debug.Assert((
_hash
!= null) ^ (_hmac != null));
178
return
_hash
!= null ?
179
_hash
.FinalizeHashAndReset(destination) :
267
Debug.Assert((
_hash
!= null) ^ (_hmac != null));
268
return
_hash
!= null ?
269
_hash
.GetCurrentHash(destination) :
282
Debug.Assert((
_hash
!= null) ^ (_hmac != null));
284
return
_hash
is not null ?
285
new IncrementalHash(_algorithmName,
_hash
.Clone()) :
297
if (
_hash
!= null)
299
_hash
.Dispose();