summaryrefslogtreecommitdiffstats
path: root/gen_password.py
diff options
context:
space:
mode:
Diffstat (limited to 'gen_password.py')
-rw-r--r--gen_password.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/gen_password.py b/gen_password.py
deleted file mode 100644
index 19b7781..0000000
--- a/gen_password.py
+++ /dev/null
@@ -1,6 +0,0 @@
-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')