Created
April 28, 2011 14:19
-
-
Save atbradley/946438 to your computer and use it in GitHub Desktop.
Python equivalent of php's md5()
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def md5(str): | |
import md5 | |
hasher = md5.new() | |
hasher.update(str) | |
return hasher.hexdigest() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment