2 writes to _hashHandle
System.Security.Cryptography (2)
System\Security\Cryptography\LiteHash.Windows.cs (2)
206_hashHandle = hashHandle; 218_hashHandle = hashHandle;
6 references to _hashHandle
System.Security.Cryptography (6)
System\Security\Cryptography\LiteHash.Windows.cs (6)
237NTSTATUS ntStatus = Interop.BCrypt.BCryptHashData(_hashHandle, data, data.Length, dwFlags: 0); 249NTSTATUS ntStatus = Interop.BCrypt.BCryptFinishHash(_hashHandle, pDestination, destination.Length, dwFlags: 0); 267using (SafeBCryptHashHandle tmpHash = Interop.BCrypt.BCryptDuplicateHash(_hashHandle)) 281SafeBCryptHashHandle clone = Interop.BCrypt.BCryptDuplicateHash(_hashHandle); 289NTSTATUS ntStatus = Interop.BCrypt.BCryptFinishHash(_hashHandle, pDestination, destination.Length, dwFlags: BCRYPT_HASH_DONT_RESET_FLAG); 300_hashHandle.Dispose();