Skip to content

Instantly share code, notes, and snippets.

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