Tested tool guide
Tested browser tools
Checked August 16, 2026
What Code Signing Verifier does, with a checked example
Choose a downloaded file and enter its expected SHA-256 digest. Code Signing Verifier calculates the file's digest in the browser and compares the two values, revealing whether the selected bytes match the published release. The most common mistake is treating a match as proof of publisher identity. It establishes integrity relative to the expected digest, but that digest must come from a trusted source. Verification of an embedded publisher signature is a separate security check.
Worked example
A concrete input and expected output from the current implementation.
Input
Select a file containing exactly the three ASCII bytes abc, with no newline. Enter expected SHA-256: ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad
->
Expected output
Computed SHA-256: ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad. Result: the digests match.
SHA-256 produces this 256-bit digest for the three bytes 61 62 63. Because the expected and computed 64-character hexadecimal values are identical, the comparison reports a match.