Wordpress Password Generator

Online WordPress Password Hash Generator (for WordPress 3, 4, 5+,6+)

Enter string then press button to generate wordpress password

What is wordpress password?

Wordpress password is a password generated by wordpress source code. It is a hash string, generated from any input that is used by the user as the login password.

This hash code is stored in the database of the website, for the purpose of securing the user's original password information, helping users to protect their own information from the website's administrator.

Is it possible to decrypt the wordpress password?

No, that's not possible
Similar to other hashing algorithms such as Md5, SHA1, Wordpress's algorithm also encrypts the original string of characters that the user enters. The only difference is that each real-time generation will generate different hashes with the same input.

Wordpress function to generate password

Reference library: https://www.openwall.com/phpass/
Wordpress source code on github: https://github.com/WordPress/WordPress
Download class-phpass.php: https://sita.app/dl/class-phpass.php.zip

if (!function_exists('wp_hash_password')) :
function wp_hash_password($password) {
  global $wp_hasher;
  if (empty($wp_hasher)) {     require_once(ABSPATH.WPINC.'/class-phpass.php');
    $wp_hasher = new PasswordHash(8, true);
  }
  return $wp_hasher ->HashPassword(trim($password));
}
endif;