All tools

TOOL / 06

SHA Hash Generator

Generate deterministic hexadecimal hashes with the Web Crypto API. Compare content, prepare fixtures and inspect integrity values without uploading source text.

Your data stays in this browser
Local-firstYour data stays in this browser
Hex digest

FIELD NOTES

What a cryptographic hash means

A hash maps input data to a fixed-length digest. The same input and algorithm produce the same result, while a small input change produces a very different digest.

Hashes help verify integrity but do not encrypt data. Password storage requires a dedicated slow password-hashing function with a salt, not plain SHA.

REFERENCE

Hash questions

Can a SHA hash be reversed?

There is no direct reverse operation, though weak inputs can be guessed and compared.

Which algorithm should I choose?

SHA-256 is the common default. Use another size when a protocol specifically requires it.

Can I hash passwords here?

Do not use plain SHA for password storage. Use Argon2, scrypt, bcrypt or PBKDF2 with proper parameters.