summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2018-11-09 16:33:04 +0000
committerJoe Orton <jorton@apache.org>2018-11-09 16:33:04 +0000
commitac4243b7d71808fd7fe274dd37b30ae5a28cccab (patch)
tree9bf1a17f86da0e7432159ed3f238fd41e6d17e27 /support
parent8122b2a79d34fbe5dc54de22bf35a3eadc78fd82 (diff)
downloadhttpd-ac4243b7d71808fd7fe274dd37b30ae5a28cccab.tar.gz
* support/htpasswd.c (usage): Fix bcrypt round maximum.
* docs/manual/programs/htpasswd.xml: Document that bcrypt rounds are capped at 17. PR: 62078 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1846254 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support')
-rw-r--r--support/htpasswd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/htpasswd.c b/support/htpasswd.c
index 660a27c792..73b291d72c 100644
--- a/support/htpasswd.c
+++ b/support/htpasswd.c
@@ -111,7 +111,7 @@ static void usage(void)
" -m Force MD5 encryption of the password (default)." NL
" -B Force bcrypt encryption of the password (very secure)." NL
" -C Set the computing time used for the bcrypt algorithm" NL
- " (higher is more secure but slower, default: %d, valid: 4 to 31)." NL
+ " (higher is more secure but slower, default: %d, valid: 4 to 17)." NL
" -d Force CRYPT encryption of the password (8 chars max, insecure)." NL
" -s Force SHA encryption of the password (insecure)." NL
" -p Do not encrypt the password (plaintext, insecure)." NL