Reputation: 191
As i posted as title, there is a way to use the crc32b hash on python natively or through a library (i.e. chilkat)?
My intention is to "translate" a program from php to python, so output should be same as in php:
$hashedData= hash('crc32b',$data);
-> Edit: in a win32 system
Thanks to all ;)
Upvotes: 1
Views: 1209
Reputation: 881645
python-mhash supplies many hashing functions including crc32b.
Upvotes: 2