How to Use
- Choose text mode or file mode.
- Paste text, or select a file to verify.
- Pick SHA-256, SHA-384, or SHA-512.
- Paste an expected checksum if you need comparison.
- Copy the generated result.
Core Features
- Text and file hashing: Paste text or choose a file to generate a verifiable fingerprint.
- Checksum compare mode: Paste an expected checksum to verify downloads, release artifacts, or config payloads.
- Modern SHA algorithms: Use SHA-256, SHA-384, and SHA-512 without presenting MD5/SHA-1 as secure choices.
- Local privacy workflow: Text, payloads, and files are processed in your browser without uploads.
- Fast copy output: Copy hashes into release notes, audits, or debugging workflows.
Related Tools
Strong password generator for random passwords or XKCD passphrases. See entropy and crack-time estimatesโsecure, client-side only. Generate yours now.
Test password strength and estimated crack time with zxcvbn. The check runs locally in your browser, so your input is not uploaded.
Generate Ed25519, RSA-2048, or RSA-4096 SSH keys with browser Web Crypto. Copy an OpenSSH public key and download the private key as PKCS#8 PEM.
Generate Bcrypt hashes locally and verify passwords against existing hashes with adjustable Cost/Rounds for auth development, migrations, and seed data.
Decode and debug JWTs in your browserโno secret key, no uploads. Inspect header/payload, pretty-print JSON, and see a live exp countdown. Paste offline now.
Generate and sign JWTs for API testing. Edit header and payload, use HS256/HS384/HS512, and keep your secret local while HMAC signing runs in the browser.
Calculation Logic
A hash turns input data into a fixed-length fingerprint. This tool uses the browser Web Crypto API locally:
- SHA-256/SHA-384/SHA-512 are useful for integrity checks, release verification, and developer workflows.
- A checksum proves whether content matches; it is not encryption and cannot restore the original input.
- Compare mode ignores spaces, colons, and hyphens to support pasted checksum formats.
- Files are read and hashed in the browser without upload.
FAQ
Is my text or file uploaded?
No. Hashing runs locally in your browser, and the input is not uploaded to a server.
Is a hash the same as encryption?
No. A hash is a one-way fingerprint for integrity checks. Encryption is reversible when you have the key.
Which algorithm should I use?
Use SHA-256 for most checksum work. Use SHA-384 or SHA-512 when you need a longer digest.
Can I verify a downloaded file?
Yes. Select the file and paste the official checksum to see whether it matches.
Why do two files have different hashes?
Any small change in content, encoding, or metadata can produce a different hash. That is why checksums are useful for detecting changes.
Why is MD5 not included?
MD5 is no longer suitable for security-sensitive claims. This first version focuses on modern SHA algorithms.