htpasswd Generator

Generate password entries for Apache .htpasswd files

Fill in username and password above...
Usage: Copy the output line into your .htpasswd file. Pair with an .htaccess file containing:
AuthType Basic
AuthName "Restricted"
AuthUserFile /path/.htpasswd
Require valid-user


Note: MD5 (APR1) is the standard Apache format. For production, consider bcrypt via the htpasswd CLI tool. All hashing runs client-side — your password never leaves this page.