Check a password candidate against an encoded bcrypt hash.
The frame below runs the same code as this page, in the reader's own browser. Nothing is sent to us, and nothing is sent to you.
Pick a dark background and the text and panels follow it, so the frame stays readable on a dark page.
The encoded bcrypt string supplies the version, cost, salt, and checksum; the candidate password is processed with those parameters and compared to the stored checksum. Verification tests one candidate and does not reveal the original password.
Input: MyPassword123 Hash: $2b$10$N9qo8uLOickgx2ZMRZoMyeIjZAgcfl7p92ldGxad68LJZdL17lhWy
NO MATCH: Password does not match the bcrypt hash
Login checks, account migrations, and known-vector tests verify bcrypt strings.