Skip to content
๐Ÿ”Ž

Hash Identifier

Developer

Identify likely hash algorithms from a pasted digest by length, format, and known prefixes such as MD5, SHA-1, SHA-256, bcrypt, and Argon2.

0
0

A hash digest pulled from an old database dump or a config file rarely comes labeled with which algorithm produced it, and MD5, SHA-1, SHA-256, bcrypt, and Argon2 each leave a different fingerprint, a specific length, a specific format, sometimes a recognizable prefix like $2b$ or $argon2, that narrows it down without needing to guess blindly. This tool identifies the likely algorithm behind a pasted hash by examining its length, format, and known prefixes, narrowing an unlabeled digest down to its probable source.

See more about the Hash Identifier

Useful for figuring out which algorithm produced a hash found in an old database export before attempting to verify it, recognizing a bcrypt or Argon2 hash by its distinctive prefix, or confirming whether a 32-character digest is actually MD5 rather than a truncated longer hash.

Key features

  • Clean interface
  • Fast processing
  • No signup required
  • Works offline

Quick answers for Hash Identifier

How does it guess the hash type?
Mainly by digest length, such as 32 characters for MD5 or 64 for SHA-256, combined with format patterns like the $2a$ prefix for bcrypt or {sha1} for Apache-style hashes.
What is the character entropy indicator for?
It measures how many unique characters appear relative to the total length, which can hint at whether a string looks like a genuine hash or a low-variation placeholder.
Is the identification guaranteed to be correct?
No, it is an educated guess based on length and format alone, since many hash algorithms share the same output length and can't be told apart with certainty.