Hash a password
Click "Generate Hash" to create a bcrypt hash.
Verify password
About bcrypt
bcrypt automatically generates a salt and stores it inside the hash string. You can safely store the hash in your database. To verify, simply provide the password and the hash. The cost factor (rounds) determines how many hashing rounds are performed: 2^cost. A cost of 10-12 is recommended for most applications. Higher cost increases security but also time.