-
Currently, bloom_filter.rs implements ahash for the internal hasher.
This is problematic since ahash has an [unstable representation](https://github.com/tkaitchuck/aHash#goals-and-non-goals):
> *…
-
So far we didn't list the known exploit schemes. But since I started evaluating and listing Bad Seeds #99, we could as well list all known exploits, e.g. BadKeys which will always lead to collisions.
…
-
```
#!watchflakes
default
-
### Zig Version
0.14.0-dev.909+f9f894200
### Steps to Reproduce and Observed Behavior
I ran this C code (from SMhasher) through `zig translate-c`:
```c
#include
uint32_t
FNV1A_Totenschiff(…
-
The 32-bit seed parameter is used to initialize the two 64-bit h1 and h2 variables. Would it make sense (and would it make any qualitative difference) to allow a 64-bit seed value instead?
void Mur…
-
`src/crc.cpp` is a very simple CRC-32 implementation. SIMD implementations can be more than 14x faster.
See https://fastcompression.blogspot.com/2019/03/presenting-xxh3.html?showComment=15526939621…
-
`wyrng` has been shown to have some flaws within the randomness
(from [official repo](https://github.com/wangyi-fudan/wyhash) )
>Both of them are not 64 bit collision resistant, but is about 62 bits…
-
I am involved in a project to create a standard library for modern fortran, https://github.com/fortran-lang/stdlib. I would like to add two modules providing collections of 32 and 64 bit hash function…
-
I'm trying to add string to the cuckoofilter library
https://github.com/efficient/cuckoofilter/blob/master/src/cuckoofilter.h
mycode
cuckoofilter::CuckooFilter cuckoo_mempool(total_items);
b…
-
I was noticing that my bees process was using 100% of 4 cores on my cpu, which when running 24/7 must use quite a bit of electricity and generate heat. A quick `perf top` showed that the crc64 was the…