jwHash icon indicating copy to clipboard operation
jwHash copied to clipboard

Simple hash table implementation for C.

Results 2 jwHash issues
Sort by recently updated
recently updated
newest added

The method: void *delete_hash( jwHashTable *table ); Is in header file but not implemented. BR's Omar

This implementation is vulnerable to hashdos attack. It is, indeed, quite easy to generate colliding strings with DJBX33A. You should use a keyed hash function like SipHash for exemple.