WordPress password hash & salt key generator.
Free online tools to generate a WordPress password hash, a bcrypt hash for WP 6.8+, and fresh secret keys and salts for wp-config.php — or verify a hash straight from wp_users. Runs in your browser, no signup.
Password hash
Portable phpass hash (MD5-based, WordPress's default 8-round work factor) for the user_pass column in wp_users.
phpass hashes start with $P$B. WordPress verifies them automatically on the next login.
bcrypt hash
Modern bcrypt hash — the algorithm WordPress 6.8+ uses in wp_hash_password().
bcrypt hashes start with $2y$. Higher cost = slower, harder to brute-force.
Secret keys & salts
Eight fresh keys, formatted for wp-config.php. Paste over the existing block.
Regenerating and re-saving wp-config.php invalidates all sessions — everyone gets logged out.
Hash verifier
Paste a hash from wp_users.user_pass and a candidate password to confirm whether they match. Works with phpass and bcrypt.