Skip to content

Commit

Permalink
Merge pull request #31 from xypwn/root
Browse files Browse the repository at this point in the history
Fix murmur64a hash
  • Loading branch information
Xaymar committed Apr 9, 2024
2 parents c0e2683 + ff95761 commit 0965ea6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/hasher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -235,9 +235,9 @@ class hash_murmur_64a : public hellextractor::hash::instance {
hash ^= (static_cast<uint64_t>(data2[1]) << 8);
case 1:
hash ^= (static_cast<uint64_t>(data2[0]));
hash *= mix;
};

hash *= mix;
hash ^= hash >> shifts;

hash *= mix;
Expand Down

0 comments on commit 0965ea6

Please sign in to comment.