You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.
getHash("ABCD") with seed [0x80000000] = 445bfd9f010fc179
While using 0x7FFFFFFF as seed both Java and Javascript implementation creates hash of 5479e1557e1d305a for 'ABCD', using 0x80000000 as seed, JavaScript implementation produces hash of 846bea22a8abeaf0 and Java implementation produces hash of 445bfd9f010fc179
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hashing with hashes above ### > 0x7fffffff produces hashes which are different from what is generated using Java.
Example (In JavaScript js-xxhash):
Seed : 0x7FFFFFFF
output:
Example (In JavaScript js-xxhash):
Seed : 0x80000000
output:
Here is the same operation using Java
Example (In Java xxhash):
Seed : 0x7FFFFFFF
output
Example (In Java xxhash):
Seed : 0x80000000
output
While using 0x7FFFFFFF as seed both Java and Javascript implementation creates hash of 5479e1557e1d305a for 'ABCD', using 0x80000000 as seed, JavaScript implementation produces hash of 846bea22a8abeaf0 and Java implementation produces hash of 445bfd9f010fc179
The text was updated successfully, but these errors were encountered: