Skip to content

Instantly share code, notes, and snippets.

@manukurakar
Created June 18, 2015 07:09
Show Gist options
  • Save manukurakar/3763d4d17e9b276ac918 to your computer and use it in GitHub Desktop.
Save manukurakar/3763d4d17e9b276ac918 to your computer and use it in GitHub Desktop.
Code for generating SHA512 of a message using python
import hashlib
salt = "manu"
message = "Hello Manu!"
print hashlib.sha512( salt + message ).hexdigest()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment