-
-
Save viewpnt/d39ba0d48355a7a3bbec691eda552fff to your computer and use it in GitHub Desktop.
Revisions
-
garrettreid created this gist
Jan 9, 2014 .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,28 @@ #!/usr/bin/python import os import hashlib import getpass import base64 password1 = None password2 = None # Read the password while password1 != password2 or password1 == None: password1 = getpass.getpass() password2 = getpass.getpass("Confirm password: ") if (password1 != password2): print "\nPassword mismatch, try again." # Generate a 5 byte random salt salt = os.urandom(5) # Hash our password + salt sha = hashlib.sha512() sha.update(password1) sha.update(salt) ssha512 = base64.b64encode('{}{}'.format(sha.digest(), salt)) # Print it out with a prefix for Dovecot print "\n{{SSHA512}}{}".format(ssha512)