From e440caa9c667d75044316e5e04463250173a33e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20B=C3=BChler?= Date: Sun, 3 Oct 2010 19:59:42 +0200 Subject: [PATCH] [mod_auth] document that $apr1$ is supported now --- src/modules/mod_auth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/mod_auth.c b/src/modules/mod_auth.c index 94838c4..2946014 100644 --- a/src/modules/mod_auth.c +++ b/src/modules/mod_auth.c @@ -27,7 +27,7 @@ * auth.htpasswd ["method": method, "realm": realm, "file": path, "ttl": 10]; * - requires authentication using a htpasswd file containing user:encrypted_password pairs seperated by newlines (\n) * - passwords are encrypted using crypt(3), use the htpasswd binary from apache to manage the file - * + hashes starting with "$apr1$" are NOT supported (htpasswd -m) + * + hashes starting with "$apr1$" ARE supported (htpasswd -m) * + hashes starting with "{SHA}" ARE supported (followed by sha1_base64(password), htpasswd -s) * - only supports "basic" method * auth.htdigest ["method": method, "realm": realm, "file": path, "ttl": 10];