Created
October 10, 2015 03:58
-
-
Save c0ldlimit/923089083b5c603397d0 to your computer and use it in GitHub Desktop.
Revisions
-
c0ldlimit created this gist
Oct 10, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ import base64 import uuid import hashlib def hash_password(password, salt=None): if salt is None: salt = uuid.uuid4().hex hashed_password = hashlib.sha512(password + salt).hexdigest() return (hashed_password, salt) def verify_password(password, hashed_password, salt): re_hashed, salt = hash_password(password, salt) return re_hashed == hashed_password