Online hash generator
A hash turns data of any length into a fixed-length "fingerprint", commonly used for file integrity checks, password storage and digital signatures. This hash generator uses the browser-native Web Crypto API and supports SHA-1, SHA-256, SHA-384 and SHA-512 — fast, secure, and nothing is uploaded.
How to use
- Paste text into the input box.
- Choose the hash algorithm (SHA-256 or higher recommended).
- Click Generate to get the hex hash, which you can copy in one click.
Common use cases
- Verify a downloaded file is intact and untampered.
- Check whether two pieces of content are identical.
- Learn and test hash algorithms.
Note: in practice, storing passwords should not use a plain hash — combine a salt with a purpose-built algorithm like bcrypt or Argon2.