From 28b77189402889e4d82cc7ab8fdb9267d3485c16 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 11 Dec 2008 10:33:19 +0100 Subject: add password helper --- gen_password.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 gen_password.py 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') -- cgit v1.2.3