A signature on a PDF looks reassuring, but on its own it proves very little — a signature image can be pasted, and a real digital signature can go unchecked because most people never open the panel that validates it. Verifying a signed PDF means confirming two things: that the signature is genuine and that the file has not changed since it was signed.
This guide walks through three methods that actually work, each completable in under a minute, and shows when to use which. It closes with a side-by-side comparison so you can pick the right one for your workflow.
Method 1: How do you check the PDF reader's signature panel?
Open the PDF in a reader that validates digital signatures, such as Adobe Acrobat Reader, and open the signature panel to confirm the signature is valid and the signing certificate is trusted. A genuine digital signature uses PKI cryptography to bind the signer's identity to the exact file, so the reader can tell you both who signed and whether the document has been altered since signing — a single edited character invalidates it. Look for an explicit "signature is valid" status and check that the certificate chains to a trusted authority, not a self-signed or unknown issuer. This method is conclusive when a real digital signature is present, but it has limits: a pasted signature image is not a digital signature and will show nothing in the panel, and certificate trust settings vary by reader. Note the distinction between the legal act and the cryptography in electronic signature vs digital signature.
Method 2: How do you verify with a QR code or hosted page?
Scan the QR code printed on the document, or open its verification URL, and confirm it resolves to a proof page on the issuer's own domain showing the document is authentic and unaltered. This is the fastest method for recipients because it needs no PDF software, no account, and no understanding of certificates — any phone camera works. Because the proof lives on the issuer's infrastructure rather than inside the file, a forger who copies the PDF cannot fabricate a valid result; the scan either reaches the genuine issuer record or it does not. The one thing to check is the destination domain: confirm it genuinely belongs to the issuer before trusting the result. This is the model VerifyDoc.ai uses, explained in QR code document verification, and it stays checkable years after issuance, unlike a one-time signature validation.
Method 3: How do you compare a file hash?
Compute the cryptographic hash of the PDF and compare it byte-for-byte to a reference hash the issuer published, such as a SHA-256 value. A hash is a unique fingerprint of the file: if even one byte changes, the hash changes completely, so a match proves the file is the exact one the issuer released. On most systems you can generate a hash with a built-in command — for example a SHA-256 utility — and then compare the output string to the reference. This method is the most rigorous for archival and audit integrity, and it underpins tamper-evident records, but it is the least convenient for everyday recipients because it requires a reference hash to compare against and a little technical comfort. It is best used inside a system that stores and surfaces the reference hash automatically rather than asking each recipient to manage it.
Which method should you use, and how do they compare?
Choose based on who is verifying and what they have: the signature panel suits technical recipients with the right reader, the QR proof page suits anyone with a phone, and hashing suits archival integrity checks.
| Method | Time | Needs special software? | Verifies issuer identity? | Best for |
|---|
| PDF reader signature panel | ~30 sec | Yes (validating reader) | Yes, via certificate | Recipients checking a signed contract |
|---|
| QR code + issuer proof page | ~10 sec | No (any phone camera) | Yes, via issuer domain | Any recipient, at scale, no login |
|---|
| Hash comparison | ~30–60 sec | A hashing utility | Only with a trusted reference | Archival and audit integrity |
|---|
For a recipient who simply needs a yes-or-no answer fast, the QR proof page wins; for legal contracts, combine the signature panel with the proof page. See the pillar guide to verifying document authenticity for how these layer together.