Create bcrypt password hashes for your apps and tests. How to hash a value online with the Bagiqo bcrypt generator.
Storing a plaintext password is a serious mistake. Applications hash passwords so the stored value cannot be turned back into the original easily, and bcrypt is one of the most trusted algorithms for this.
The bcrypt generator takes a text value and returns a bcrypt hash of it — handy for seeds, fixtures and quick tests.
How to use it
- Open the bcrypt generator.
- Type the value you want to hash.
- Copy the resulting hash.
Notes
- A hash is one-way: you cannot recover the original from it.
- Use it for generating sample data, not for storing real user passwords.
- Real auth flows should hash on the server with a cost tuned to your hardware.