Securely hash passwords or verify existing Bcrypt hashes. An advanced, client-side utility for developers featuring customizable salt rounds and key stretching.
The password matches the provided hash.
Bcrypt is a password-hashing function designed specifically to be slow and computationally expensive. Unlike MD5 or SHA-256 (which are fast and vulnerable to brute-force attacks), Bcrypt includes a "Cost Factor" (Salt Rounds) that dictates how long it takes to calculate the hash.
$2a$10$vI8aWB.... The $2a$ identifies the algorithm version, 10$ is the cost factor, followed by the 22-character salt and the 31-character hash.bcrypt.js to compute hashes asynchronously entirely inside your browser. Your plain-text passwords are never sent over the internet or logged in a database.