-
Despite what smhasher indicates, the Rust version isn't able to get anywhere near that level of performance. I benchmarked with rust 1.72 on Linux 6.5 and a 13900 with varying key sizes:
```
umash…
-
https://github.com/cmuratori/meow_hash
https://mollyrocket.com/meowhash
-
You might not want to do this @rurban or smhasher community but I think one nice idea when developing random/pseudo-random functions is to test how compressible they are.
So loop them on their own…
-
https://github.com/google/highwayhash
There's a portable C version that will be easier to integrate but won't have the same performance as the SIMD-optimized one but still should give representativ…
-
This hash function is like all MUM hashes vulnerable to some bad seeds, which when randomly selected by chance lead to security vulnerabilites, at least a high number of collisions independent of the …
-
The readme doesn't explain how to use/compile this. I am not intimately familiar with compilers, only know how to compile with MinGW using one or more files like so:
`g++ -o out file1 file2 file3` …
-
fhtw.asm:188: error: parser: instruction expected
```
repe cmps
```
http://www.nasm.us/doc/nasmdoc2.html
>>2.2.3 NASM Doesn't Store Variable Types
NASM, by design, chooses not to remember …
-
So I was able to get a variation of the FNV1a tests working by adding it in which was great. But honestly, I'm not 100% sure I've put it in correctly since I'm not sure what is getting passed in. If…
-
Some parts of the code base are using custom-made hashing functions, others are using `hash/fnv`, while others are using other things. I believe we should unify that as much as possible, hopefully wit…
-
Hello @aappleby ,
Thank you for all your help with the code.
I have one question though, about the Public domain implementation: MurmurHash3 that is placed in Public Domain, could it be also used un…