An implementation of the xxh32 hash algorithm: https://github.com/Cyan4973/xxHash
Designed to work on a stream of input data (e.g. taken by reading a file).
The following should generate a hash of: 0xEBE43B95
./build.sh
echo "My name is Pete." > pt.txt
./bin/xxh32s pt.txt
rm pt.txt