Skip to content

Instantly share code, notes, and snippets.

@atbradley
Created April 28, 2011 14:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save atbradley/946438 to your computer and use it in GitHub Desktop.
Save atbradley/946438 to your computer and use it in GitHub Desktop.
Python equivalent of php's md5()
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