Ragnagard
Ragnagard

Reputation: 191

Python way to do crc32b

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

Answers (1)

Alex Martelli
Alex Martelli

Reputation: 881645

python-mhash supplies many hashing functions including crc32b.

Upvotes: 2

Related Questions