Privacy · hashHash of a file or text
Compute SHA-256, SHA-1, SHA-512 or MD5 for a file or a piece of text and compare it with a published reference. Nothing is uploaded — it all runs in your browser.
The file never leaves your device — the digest is computed locally
01
Hash
file or text · several algorithms at once02
Compare with a reference
the algorithm is read from the length of the referencelength—
64 hex characters — SHA-256, 40 — SHA-1, 32 — MD5, 96 — SHA-384, 128 — SHA-512. Case, spaces and a filename pasted alongside do not matter.
03
About hashes
A hash is a short fingerprint of a file or a piece of text: the smallest edit changes it completely. That makes it a convenient way to check that a download arrived intact and was not swapped along the way. The same file always produces the same hash, and the original data cannot be restored from it.
What a hash is
Basicsfile → 64 characters
The function folds data of any size into a fixed-length string. Change a single byte and the whole hash changes.
Why compare
Integrityreference → your hash
Projects publish a reference hash next to the download link. If yours matches, the file is intact and unaltered.
SHA-256
Standard64 hex characters
The current mainstream algorithm: sound and fast. It is the sensible default for anything you check today.
MD5 and SHA-1
Legacynot for security
Good only for a quick check against accidental corruption. They are not used for security — both can be forged.
One-way by design
Propertyhash → ✗ data
The original file cannot be restored from a hash. It proves integrity; it does not carry the contents.
Privacy
Localno server
The digest is computed in your browser: the file is never uploaded. Confidential documents can be checked here.
04
Frequently asked questions
Updated