How to generate WordPress password hash?
Using our WordPress password hash generator is simple:
- Enter your password in the input box.
- The WordPress password hash will be generated automatically as you type.
- Copy the generated hash for use in WordPress or testing.
What is WordPress password hashing?
WordPress uses phpass (Portable PHP password hashing framework) for password hashing. The hash format is $P$B[salt][hash] where P indicates phpass, B indicates bcrypt-like algorithm, followed by salt and hash. WordPress password hashing uses multiple iterations of MD5 with salt for security.
WordPress password hash characteristics
- phpass format: Uses Portable PHP password hashing framework.
- Salted: Each password hash includes a random salt.
- Multiple iterations: Uses thousands of iterations for security.
- Format: $P$B[salt][hash] structure.
- WordPress compatible: Compatible with WordPress password system.