SHA-256 hash of a file
Compute the SHA-256 fingerprint of any file.
A hash is a short string that changes completely if even one byte of the file changes. Publishers list them next to downloads so you can check that what arrived is what they sent, and that nothing was altered on the way.
The calculation uses the browser’s own cryptography, the same implementation that secures the connection you are reading this over.
Compare the result against the publisher’s string in full, ideally by pasting both somewhere that can tell you whether they match. Reading the middle of a sixty-four character hash by eye is how mistakes get through.
Accepts: */*
AlgorithmSHA-256fixed by this page
Questions
- What is a hash for?
- Proving two files are identical without comparing them byte by byte. Download something, hash it, and check the result against the one the publisher listed.
- Can a hash be reversed to get the file back?
- No. It is a one-way fingerprint. Two different files producing the same SHA-256 has never been demonstrated.