Checksum routine - new to Python

Alex cut_me_out at hotmail.com
Thu May 18 18:13:00 EDT 2000


> If there is a Python library with something suitable, I'll happily use
> that instead.

Maybe.  How about crc?

import binascii
binascii.crc_hqx ('asentuhaonthu', 1092)

Or MD5?

import md5
md5.new ('naoethuanotehu').digest()


Alex.



More information about the Python-list mailing list