PDF Digital Signatures: How They Work and Why They Matter

Β· 10 min read

Electronic vs Digital Signatures

These terms are often confused but mean different things:

FeatureElectronic SignatureDigital Signature
DefinitionAny electronic indication of intent to signCryptographic signature using PKI certificates
ExamplesTyped name, drawn signature, click-to-acceptCertificate-based signature with hash verification
Identity verificationVaries (email, phone, none)Certificate Authority verifies identity
Tamper detectionNoYes β€” any modification invalidates the signature
Legal weightValid in most casesHighest legal weight, especially in EU (eIDAS)
CostUsually freeCertificate costs $20-200/year

For most personal and business use, electronic signatures are sufficient. Digital signatures are required for government filings, regulated industries, and cross-border legal documents.

How Digital Signatures Work

A PDF digital signature uses Public Key Infrastructure (PKI) β€” the same technology that secures HTTPS websites:

  1. Hash creation β€” The PDF content is run through a cryptographic hash function (SHA-256), producing a unique fingerprint
  2. Encryption β€” The hash is encrypted with the signer's private key, creating the signature
  3. Embedding β€” The encrypted hash and the signer's public certificate are embedded in the PDF
  4. Verification β€” A reader decrypts the hash using the public key, computes a new hash of the document, and compares them. If they match, the document is unmodified

This process guarantees three things:

Certificate Types

TypeIssued ByTrust LevelUse Case
Self-signedYouLow (recipient must manually trust)Internal documents, testing
Organization-validated (OV)Certificate AuthorityMedium (CA verified the organization)Business contracts, invoices
Extended Validation (EV)Certificate AuthorityHigh (thorough identity verification)Legal documents, government
Qualified (QES)Qualified Trust Service ProviderHighest (EU eIDAS qualified)EU legal equivalence to handwritten

Certificate Authorities trusted by Adobe Acrobat include DigiCert, GlobalSign, Entrust, and others on the Adobe Approved Trust List (AATL).

Signature Validation

When you open a signed PDF, the viewer checks:

CheckGreen βœ“Yellow ⚠Red βœ—
Certificate trustCA is on trusted listSelf-signed or unknown CACertificate revoked
Document integrityUnmodified since signingAllowed changes (form fill)Content modified
Certificate validityNot expiredExpiring soonExpired
TimestampTrusted timestamp presentNo timestampTimestamp invalid

Long-Term Validation (LTV)

Certificates expire, CRLs (Certificate Revocation Lists) become unavailable, and OCSP responders go offline. LTV embeds all validation data (certificates, CRLs, OCSP responses) into the PDF at signing time, so the signature can be verified years later even if the CA no longer exists.

Timestamp Authorities

A timestamp proves when the document was signed. Without it, someone could backdate a signature. Trusted timestamp authorities include DigiCert, GlobalSign, and FreeTSA.org.

JurisdictionLawKey Points
United StatesESIGN Act (2000), UETAElectronic signatures are legally valid. No specific technology required.
European UnioneIDAS (2014)Three levels: simple, advanced, qualified. Only QES has automatic legal equivalence to handwritten.
United KingdomElectronic Communications Act 2000Electronic signatures admissible as evidence. QES for highest assurance.
ChinaElectronic Signature Law (2005)Reliable electronic signatures have same legal effect as handwritten.
IndiaIT Act 2000Digital signatures using asymmetric crypto are legally recognized.

How to Sign a PDF

Free Options

Command Line (OpenSSL + pdfsig)

# Create a self-signed certificate
openssl req -x509 -newkey rsa:2048 -keyout key.pem \
  -out cert.pem -days 365 -nodes \
  -subj "/CN=Your Name/O=Your Org"

# Convert to PKCS#12
openssl pkcs12 -export -out cert.p12 \
  -inkey key.pem -in cert.pem

# Sign with pdfsig (poppler-utils)
pdfsig --sign input.pdf output.pdf cert.p12

Common Issues

Frequently Asked Questions

What is the difference between electronic and digital signatures?

An electronic signature is any electronic indication of intent to sign (typed name, drawn signature, click-to-sign). A digital signature uses cryptographic certificates to verify identity and detect tampering. Digital signatures are a subset of electronic signatures.

Are PDF digital signatures legally binding?

Yes, in most jurisdictions. The US ESIGN Act, EU eIDAS regulation, and similar laws in 60+ countries recognize digital signatures as legally equivalent to handwritten signatures.

What does the green checkmark mean on a signed PDF?

It means the signature is valid: the signer's identity is verified by a trusted certificate authority, and the document has not been modified since signing.

Can I sign a PDF for free?

Yes. ThePDF's signature tool, LibreOffice Draw, and Okular allow free PDF signing. For legally binding digital signatures with identity verification, you need a certificate from a Certificate Authority.

What happens if a signed PDF is modified?

The signature becomes invalid. PDF viewers show a warning that the document was altered after signing. The cryptographic hash computed during verification no longer matches the original.

Related Tools

Sign PDF Encrypt PDF Password Protect Unlock PDF