/writer-devhash-identifier
Writer & Dev

Hash Identifier: Detect bcrypt, Argon2, MD5, SHA and HMAC Formats

Identify which algorithm produced a hash from its prefix, length and character set, and learn whether that algorithm is still safe to use. It explains formats only — it never attempts to crack anything.

Runs in your browser — your text is never uploaded or stored.

Quick answer

Hash Identifier (bcrypt, Argon2, SHA) is a free online tool that identify which algorithm produced a hash from its prefix, length and character set, and learn whether that algorithm is still safe to use. It explains formats only — it never attempts to crack anything.

  • Cost: free, no signup or limits.
  • Privacy: runs 100% in your browser; text is never uploaded.
  • Works on: desktop and mobile browsers, offline once loaded.
  • Category: Writer & Dev.

Likely algorithms

  • bcrypthigh

    Blowfish-based password hash. The number after the second $ is the cost factor (work factor).

Algorithm reference

AlgorithmTypeOutputVerdict
MD5Fast digest128-bit / 32 hexBroken — checksums only
SHA-1Fast digest160-bit / 40 hexDeprecated
SHA-256Fast digest256-bit / 64 hexRecommended for integrity
SHA-512Fast digest512-bit / 128 hexRecommended for integrity
HMAC-SHA256Keyed MAC256-bit / 64 hexRecommended for message authentication
PBKDF2Password KDFConfigurableAcceptable with high iteration count
bcryptPassword hash60-char $2b$ stringGood
scryptPassword hashConfigurableGood
Argon2idPassword hash$argon2id$ stringBest current default

How to Use

  1. 1.Paste the hash string you want to identify.
  2. 2.Read the ranked list of likely algorithms and their confidence.
  3. 3.Check the reference table to see whether the algorithm is still recommended.
Advertisement

FAQ

Can this crack or reverse a hash?

No, and it never will. Secure hashes are one-way by design; this tool only explains formats.

Why do several algorithms match?

Different algorithms can produce identical output lengths — SHA-256, SHA3-256 and BLAKE2s are all 64 hex characters.

Which password hash should I use?

Argon2id is the current recommendation, with bcrypt and scrypt as solid alternatives. Never store passwords with plain MD5 or SHA.

Related tools

More text utilities