Tested tool guide
Tested browser tools
Checked August 16, 2026
What Password Hash Checker does, with a checked example
Paste a stored hash string and a candidate password, and this tool replays the algorithm - bcrypt, scrypt, Argon2, or PBKDF2 - using the salt and work parameters encoded in the hash itself, then reports whether the recomputed digest matches the stored one. A match is the only meaningful answer: hashes cannot be decrypted. The common surprise is bcrypt's 72-byte limit: only the first 72 bytes of a password are hashed, so two different long passwords can both verify against the same hash.
Worked example
A concrete input and expected output from the current implementation.
Input
Hash: $2a$10$N9qo8uLOickgx2ZMRZoMyeIjZAgcfl7p92ldGxad68LJZdL17lhWy Password: password
->
Expected output
Match: the password verifies against the hash (bcrypt, cost 10).
This is a widely published bcrypt test vector: the digest of the string password at cost 10 with the salt encoded in the string (N9qo8uLOickgx2ZMRZoMye). The tool recomputes the digest from the candidate and finds it identical to the stored one, so it reports a match.