DevBox

Hash Generator

④ API / Debug

What it is: Turn any text into a fixed-length "fingerprint" (hash), commonly used to check integrity.

When to use: When verifying a file/text was not modified, or storing a password digest.

SHA-1

SHA-256

SHA-384

SHA-512

Everything runs locally in your browser — nothing is uploaded.

FAQ

Why is there no MD5?

The browser's native Web Crypto does not provide MD5 for security reasons. This tool computes locally via that native API, so only the SHA family is supported. MD5/SHA are no longer suitable for password storage — use a dedicated algorithm like bcrypt or argon2 instead.

Related tools