Generate a SHA-256 checksum for any file entirely in your browser. All processing runs in your browser. Drop your file and the hash is computed locally using the Web Crypto API built into your browser.
Drop any file here
or click to browse. All processing is local
ALGORITHM
DISPLAY
Drop any file to generate its checksum. Compare against a publisher's hash to verify integrity.
Dropping a file reads its bytes into memory through the File API without involving any upload. Those bytes are then handed to crypto.subtle.digest('SHA-256'), producing a 256-bit digest shown as 64 hex characters. The whole operation happens inside this browser tab with no upload step.
Your file is read directly by the browser. All hashing happens locally, our servers are not involved at any point. You can verify this yourselfin your browser's DevTools Network tab.
SHA-256 is specified in FIPS PUB 180-4 (NIST, 2015). SHA-256 produces a 256-bit (32-byte) digest encoded as 64 hexadecimal characters. Both are part of the SHA-2 family and remain approved for all security applications including TLS certificates, code signing, and HMAC construction.
For encoding the result as Base64 for transport, try Base64. To generate strong random secrets to hash, use the password generator. For random unique identifiers without a hash collision risk, see the UUID generator.