2 writes to _finishFlags
System.Security.Cryptography (2)
System\Security\Cryptography\LiteHash.Windows.cs (2)
47
_finishFlags
= xof ? BCRYPT_HASH_DONT_RESET_FLAG : 0;
98
_finishFlags
= finishFlags;
4 references to _finishFlags
System.Security.Cryptography (4)
System\Security\Cryptography\LiteHash.Windows.cs (4)
114
if ((
_finishFlags
& BCRYPT_HASH_DONT_RESET_FLAG) == BCRYPT_HASH_DONT_RESET_FLAG)
137
CheckStatus(Interop.BCrypt.BCryptFinishHash(dup, pDestination, destination.Length,
_finishFlags
));
148
CheckStatus(Interop.BCrypt.BCryptFinishHash(_hashHandle, pDestination, destination.Length,
_finishFlags
));
157
return new LiteKmac(clone,
_finishFlags
);