vote up 0 vote down star

Hi all!

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 ;)

flag

70% accept rate

1 Answer

vote up 1 vote down

python-mhash supplies many hashing functions including crc32b.

link|flag
Emm after trying so many things, including visual studio 2003 and so, i'm unable to compile that extension within a win32 system (which is my current & target system) – Ragnagard Oct 10 at 18:34
@Ragnagard, depending on your Python version, different approaches are recommended for building Python extensions on Windows. However in the past I've had good success on many different extensions and versions with mingw, mingw.org , or cygwin, cygwin.com -- see boodebr.org/main/python/… for complete instructions. – Alex Martelli Oct 10 at 19:06
@Alex Martelli, I have been there before posting/comment again. If you scroll down, you can see "Next challenge - mhash" comments, where they indicate that no solution has been made with free solutions to mhash compilation, unfortunatelly – Ragnagard Oct 10 at 19:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.