diff options
Diffstat (limited to '')
-rw-r--r-- | gen_password.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gen_password.py b/gen_password.py new file mode 100644 index 0000000..19b7781 --- /dev/null +++ b/gen_password.py @@ -0,0 +1,6 @@ +import base64, cracklib, sha, string, os + +# generate a htpasswd compatible sha1 digest in base64 encoding +# see: http://httpd.apache.org/docs/2.2/misc/password_encryptions.html +def generate_sha_base64(password): + print "{SHA}" + base64.encodestring(sha.new(password).digest()).rstrip('\n') |