libbloom icon indicating copy to clipboard operation
libbloom copied to clipboard

A simple and small bloom filter implementation in plain C.

Results 7 libbloom issues
Sort by recently updated
recently updated
newest added

I propose to have some checksum function that the user can call on request. Lets to call this new funtion `bloom_checksum` ``` int bloom_checksum(struct bloom * bloom) { return (murmurhash2(bloom->bf,...

Hi this is just an observation not a bug. I'm working with this bloom library but with with several changes. One of the problems what i notice with the currents...

Could we get libbloom published to the Conan repository, in order to streamline dependency management for downstream projects? https://conan.io/center/

I'm already using the version Two it works very well for some numer of items but I notice that the unsigned int bit limits the amount of real reserved memory....

This simple yet wonderful library is great! :) Thanks for all the hard work. I've been using it lately to implement some cryptographic protocols that use bloom filters as building...

### Title `Bloom save/load routines fail for large filters due to missing write/read loops` ### Description When saving large Bloom filters, the library’s `write` and `read` calls assume that the...