js-xxhash icon indicating copy to clipboard operation
js-xxhash copied to clipboard

Javascript implementation of xxHash

Results 7 js-xxhash issues
Sort by recently updated
recently updated
newest added

Hashing with hashes above ### > 0x7fffffff produces hashes which are different from what is generated using Java. **Example (In JavaScript js-xxhash):** Seed : 0x7FFFFFFF ``` var seed = 0x7FFFFFFF;...

Adds a new file, `xxhash64-bigint.js`, that uses native JavaScript BigInts rather than the cuint library. I haven't added it to your build scripts or anything like that yet, as I'm...

It would be nice to get a version of this xxHash64 library that uses BigInt rather than the userland UInt64 implementation, in order to improve performance in environments that support...

Well it's a pretty self explainetory issue, when the hash has leading zeros, it'll be omitted. And that's something you'll never see in the output hash of any other algorithm,...

When using 'xxhash.js' or 'xxhash.min.js', I am getting the following error: Uncaught TypeError: input.copy is not a function [at XXH.update (xxhash.js:2205)] I tried to debug it on my own initially,...

When first using this library I used a plain array as input: `XXH.h64(Array(256).fill(0), 0).toString(16)`, which appeared to work fine. But it appears that only `ArrayBuffer` and strings are supported, which...

This way you can encode the data yourself