I need to get CRC64 checksum of files using PHP.
With this code
file_put_contents('example.txt', 'just an example');
echo hash_file('crc32', 'example.txt');
I get CRC32 checksum "c8c429fe";
But I need to get a checksum using CRC64 algorithm (
)
I took it from here: http://en.wikipedia.org/wiki/Cyclic_redundancy_check
How can I implement this hashing algorithm in PHP?