10 Oct 2009, 4:37pm
Python:
by

leave a comment

SHA1 or MD5 Hashing in Python

import hashlib
print hashlib.sha1("My wonderful string").hexdigest()
print hashlib.md5("My other wonderful string").hexdigest()