A powerful hashing library with features like dynamic bucketsize adjustments, thread safety, generic interface, rbtree bucket storage and a bundle of hashing algorithms.
Categories
AlgorithmsLicense
GNU General Public License version 2.0 (GPLv2)Follow libhashish
Other Useful Business Software
Simplify IT and security with a single endpoint management platform
NinjaOne automates the hardest parts of IT, delivering visibility, security, and control over all endpoints for more than 20,000 customers.
The NinjaOne automated endpoint management platform is proven to increase productivity, reduce security risk, and lower costs for IT teams and managed service providers. The company seamlessly integrates with a wide range of IT and security technologies. NinjaOne is obsessed with customer success and provides free and unlimited onboarding, training, and support.
Rate This Project
Login To Rate This Project
User Reviews
-
Finally hash tables which actually care about collision strategies, against algorithmic complexity attacks. And it even includes bloom. Modern open addressing schemes are not here (robin-hood, hopscotch, ...), but rbtree should be good. I'm only missing sorted arrays, which should have better cache performance, and CPU optimized hash functions (crc32 instrinsics, SIMD)
-
Good ready to use hash table implementation- Really saves time not reinventing the wheel