WordPress Wachtwoord Hash Generator

Genereer veilige wachtwoordhashes voor WordPress

WordPress Wachtwoord Hash Calculator

Genereer een veilige wachtwoordhash voor uw WordPress-gebruikers

Copied!

Over WordPress Password Hashing

WordPress uses a secure hashing algorithm to store passwords in its database. Since version 3.0, WordPress has used the Portable PHP password hashing framework (PHPass) to create hashes using the Blowfish algorithm (CRYPT_BLOWFISH) when available, falling back to MD5-based hashing if necessary.

WordPress-wachtwoordhashes zijn geformatteerd met een voorvoegsel dat het gebruikte hashing-algoritme aangeeft, gevolgd door de kostenfactor en het zout dat tijdens het hashen wordt gebruikt. De resulterende hash is 60 tekens lang en bevat het algoritme, de kosten, salt en het gehashte wachtwoord zelf.

Note:This tool generates WordPress-compatible password hashes using JavaScript. For production environments, it's recommended to use WordPress's built-in password hashing functions (e.g., wp_hash_password()) for maximum security and compatibility.

Veelvoorkomende gebruiksscenario's

  • Handmatig gebruikersaccounts aanmaken in WordPress
  • Wachtwoorden resetten in WordPress-databases
  • Gebruikers importeren uit externe systemen in WordPress
  • Het ontwikkelen van WordPress-plug-ins of -thema's die met wachtwoorden omgaan
  • Testen van de functionaliteit voor het hashen van wachtwoorden in WordPress

Technische gegevens

Hashing-algoritme: Blowfish (CRYPT_BLOWFISH)
Hash-voorvoegsel: $P$ of $2y$
Kostenfactor: 10-14 (WordPress default: 12)
Zout lengte: 22 personages
Hash lengte: 60 tekens

Related Tools