Password Hash Generator

Generates a PHP password_hash()-compatible bcrypt hash.

Runs entirely in your browser — your password is never sent anywhere.

Generate Hash
 
How to Use

Paste the generated hash into your config.php or directly in microfilemanager.php:

$auth_users = array( 'yourusername' => 'PASTE_HASH_HERE', );

Prefer the command line? Generate a hash directly on your server:

php -r "echo password_hash('yourpassword', PASSWORD_DEFAULT);"

Hashes use bcrypt with cost factor 10 — the same default PHP uses for PASSWORD_DEFAULT. Verified with password_verify(). Non-reversible.