Developer
Hash Generator
Generate cryptographic hashes of text or a file. All four SHA variants are calculated at once, using your browser's built-in crypto.
Good to know
Frequently asked questions
Is my file uploaded?
No. The file is read into memory in your browser and hashed there; nothing is transmitted.
Why is MD5 missing?
The Web Crypto API does not provide MD5, and it is broken for security purposes anyway.
Can I verify a download checksum?
Yes. Hash the downloaded file and compare the digest with the one the publisher lists.
Can I hash passwords with this?
You should not. Password storage needs a slow algorithm such as bcrypt or Argon2 running on your server.