How does bcrypt verification work?
The checker reads the cost factor and salt from the encoded bcrypt hash, hashes the entered password and compares the result.
Security
Check whether a password matches an existing bcrypt hash directly in your browser.
Check whether a password matches an existing bcrypt hash directly in your browser.
This tool runs in your browser. Your input is processed locally and is not uploaded.
Use this bcrypt checker to validate test hashes, migration data and authentication fixtures. The comparison is performed locally in your browser and the entered password is not uploaded.
The checker reads the cost factor and salt from the encoded bcrypt hash, hashes the entered password and compares the result.
No. Bcrypt is a one-way password hashing algorithm. Verification works by hashing the entered password again.
No. Both values are processed locally in your browser.