├── .gitignore ├── LICENSE ├── README.md ├── extras ├── bounds-check.py └── universality-proof.md ├── polymur-hash.h └── test.c /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.pyc 3 | .vscode 4 | a.out 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orlp/polymur-hash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orlp/polymur-hash/HEAD/README.md -------------------------------------------------------------------------------- /extras/bounds-check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orlp/polymur-hash/HEAD/extras/bounds-check.py -------------------------------------------------------------------------------- /extras/universality-proof.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orlp/polymur-hash/HEAD/extras/universality-proof.md -------------------------------------------------------------------------------- /polymur-hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orlp/polymur-hash/HEAD/polymur-hash.h -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orlp/polymur-hash/HEAD/test.c --------------------------------------------------------------------------------