PHP Password Hash
Generate & verify hashes
Higher = more secure but slower (recommended: 10-12)
Guide & Information
Algorithms and examples
- Enter Password — type the password you want to hash
- Select Algorithm — choose from DEFAULT, BCRYPT, ARGON2I, or ARGON2ID
- Configure Options — adjust cost, memory, time, and thread parameters
- Generate Hash — click to create the hash and PHP code
- Copy & Use — copy the hash or PHP code for your application
- Verify — use the verify tab to test password verification
Note: This tool simulates PHP's password_hash(). Use actual PHP functions in production.
This is a client-side simulation. For production, always use PHP's native password_hash() and password_verify() functions.