Hochreiter Software & IT Services
Home › Tools › SHA256Sum Calculator

SHA256Sum Calculator

Checksums for text or for whole files via drag & drop. Files are only read, never uploaded - everything is computed inside your browser.

Text

Recalculated on every keystroke - encoded as UTF-8, without a trailing newline.

SHA-256
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855

Files

Several files at once are fine - each individual file gets its own checksum.

Drop your files here or click to choose - none of it leaves your browser

In short

SHA-256 condenses any amount of data into 256 bits - 64 hex characters. The same input always yields the same checksum, and a single flipped bit yields a completely different one.

What forVerifying downloads, proving an unmodified transfer, spotting duplicates, addressing content (Git, container images, IPFS).
Cross-checkLocally, sha256sum file (Linux) or shasum -a 256 file (macOS) produces exactly the same value.
Checking a listsha256sum -c SHA256SUMS verifies a whole list at once - that is exactly the format the copy button above produces.
Not for passwordsSHA-256 is a poor fit for passwords precisely because it is fast. Use Argon2, scrypt or bcrypt instead.
Not encryptionA hash is a one-way street: the content cannot be computed back from the checksum. For short or guessable inputs that is no protection though - rainbow tables are precomputed tables holding ready-to-look-up checksums for billions of common passwords and words. A hit there reveals the input without reversing anything. A random salt per entry defends against this: it renders every precomputed table worthless.
Copied