โ๏ธ Converters & Validators
Hash Identifier โ What Type of Hash Is This?
Paste any hash and instantly identify its type: MD5, SHA-1, SHA-256, bcrypt, NTLM, and 20+ other hash algorithms. Pattern matching and length analysis.
Hash Identifier
Paste a hash to identify its type, security status, and typical use cases. Analysis runs entirely in your browser.
Hash Length Reference
| Type | Hex Length | Security |
|---|---|---|
| CRC32 | 8 | Broken |
| MD5 | 32 | Broken |
| NTLM | 32 | Deprecated |
| SHA-1 | 40 | Deprecated |
| RIPEMD-160 | 40 | Deprecated |
| SHA-224 | 56 | Secure |
| SHA-256 | 64 | Secure |
| SHA-384 | 96 | Secure |
| SHA-512 | 128 | Secure |
| bcrypt | 60 total | Secure |
| Argon2 | variable | Secure |
โ Frequently Asked Questions
How does hash identification work?+
Hash types are identified by their length, character set, and format. For example, MD5 is always 32 hex characters, SHA-256 is 64 hex characters, and bcrypt starts with '$2b$'.
Can a hash be reversed to get the original data?+
Cryptographic hashes are one-way functions โ they cannot be reversed. However, weak passwords can be found using rainbow tables or brute force against the hash.
Which hash algorithms are secure?+
SHA-256 and SHA-3 are secure for general use. For passwords, use bcrypt, scrypt, or Argon2 (which are slow by design). MD5 and SHA-1 are considered broken and should not be used for security.