Tested tool guide
Tested browser tools
Checked August 16, 2026
What Hash Type Identifier does, with a checked example
Hash Type Identifier examines a pasted hash and reports the family suggested by its length, character set, prefixes, and separators. It can recognize bare hexadecimal digests such as MD5, SHA-1, and SHA-256, as well as structured password hashes such as bcrypt and Argon2. The important caveat is that appearance is not proof of origin. Several algorithms can produce identically shaped strings, so an unprefixed digest may have more than one plausible interpretation. Inspection occurs entirely in the browser, which is relevant when the value came from credential data.
Worked example
A concrete input and expected output from the current implementation.
Input
$2a$10$N9qo8uLOickgx2ZMRZoMyeIjZAgcfl7p92ldGxad68LJZdL17lhWy
->
The $2a$ family marker and the remainder of the structured record match bcrypt's encoded form. This classification comes from the format, not from recovering or testing the password.