Create bcrypt password hashes to secure stored values. How to hash text online with the Bagiqo bcrypt generator.
Storing plaintext passwords is a serious exposure. Applications hash passwords so the stored value cannot be reversed, and bcrypt is one of the most trusted algorithms for this.
The bcrypt generator takes text and returns a bcrypt hash, which is useful for seeds, fixtures and quick tests.
How to use it
- Open the bcrypt generator.
- Type the value to hash.
- Copy the hash.
Important notes
- A hash is one-way; it cannot be reversed to the original.
- Use it for sample data and tests, not for storing real passwords.
- Real auth should hash on the server with a tuned cost.
Start from a strong value with the password generator.