Guides

MD5, SHA1, SHA256: real use cases (not encryption)

What digests are good for, what they are not, and pitfalls in downloads vs cache keys.

Related tools

Tip: open the tool page to see Pro batch/advanced modes.

Digest ≠ encryption

Hashes are one-way; they don’t replace password hashing (use salted password hashes like bcrypt/argon2).

Client-side digests are great for quick integrity checks, fingerprints, and “did this payload change?”.

Which algorithm?

Vendor checksum lists often still show MD5/SHA1 for corruption checks—integrity, not authenticity.

For security-sensitive contexts, prefer SHA-256+ as required by modern standards.

Gotchas

CRLF vs LF changes the digest—normalize newlines before comparing.

Avoid pasting secrets into untrusted environments, even with local-first tools.