๐Ÿ”’ Bcrypt Hash & Verify

Safely hash passwords with bcrypt (salt automatically included). Verify any password against a stored hash.

Free Tool

Hash a password

10
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.