Skip to content

Instantly share code, notes, and snippets.

@JeffCarpenter
Created April 9, 2019 16:04
Show Gist options
  • Save JeffCarpenter/ba696fc70aa950325e96bc5913961d39 to your computer and use it in GitHub Desktop.
Save JeffCarpenter/ba696fc70aa950325e96bc5913961d39 to your computer and use it in GitHub Desktop.
def mysql_hash(s):
x = hashlib.sha1(s.encode("ascii")).digest()
return hashlib.sha1(x).hexdigest()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment