PHP extension to add support for the xxhash fast hashing algorithm. xxhash is designed to be fast enough to use in real-time streaming applications.
   phpize
   ./configure --enable-xxhash
   make
   sudo make install
This extension adds one new PHP function:
    int xxhash32(string $data);
It will checksum the string, and return the checksum.
BSD 2-clause license.