Hash a password with bcrypt to protect it. How to generate bcrypt hashes online with Bagiqo.
Never store a plaintext password. Hashing with bcrypt produces a salted, one-way value that is safe to store, and an application compares hashes rather than raw passwords.
The bcrypt generator hashes any text you give it into a bcrypt digest.
How to use it
- Open the bcrypt generator.
- Type the value to hash.
- Copy the hash.
Practical notes
- Uses PHP password_hash, which salts automatically.
- A hash cannot be reversed to the original.
- Great for fixtures and tests; real apps tune the cost themselves.
Generate a source password first with the password generator.