Created
June 18, 2015 07:09
-
-
Save manukurakar/3763d4d17e9b276ac918 to your computer and use it in GitHub Desktop.
Code for generating SHA512 of a message using python
This file contains hidden or 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
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