Skip to content

Instantly share code, notes, and snippets.

@n10o
Created July 22, 2014 11:04
Show Gist options
  • Save n10o/a1497832643322345c64 to your computer and use it in GitHub Desktop.
Save n10o/a1497832643322345c64 to your computer and use it in GitHub Desktop.
from passlib.hash import sha512_crypt
with open("pwdstringlist.txt") as f:
for line in f:
print sha512_crypt.encrypt(line.rstrip())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment