⚠️ bcrypt is one-way – cannot be decrypted. Use the Verify tab to check passwords against this hash.

What is bcrypt?

bcrypt is a password hashing function designed for secure password storage. It is intentionally slow and uses a salt to protect against brute-force attacks and rainbow tables. It is the industry standard for modern applications.

How to use this tool

  • Generate Hash: Enter a password → click "Generate bcrypt Hash" → copy the resulting hash.
  • Verify Password: Enter the plain password and the hash → click "Verify Password" → see if they match.

Important Notes

  • bcrypt is one-way – you cannot "decrypt" it. Only verification is possible.
  • The generated hash includes the salt, cost, and algorithm identifier.
  • We use PHP's password_hash() and password_verify() – 100% compatible with standard bcrypt.
All processing is done server-side. No data is stored or logged.