Splitting a Signed PDF

Why the signature always breaks, and what to do instead.

The Short Answer

You cannot. Splitting a digitally signed PDF invalidates the signature every time, in every tool, and any product claiming otherwise is preserving the picture of a signature rather than the signature itself.

That is not a bug to route around. Detecting exactly this kind of change is the entire purpose of signing.

Why It Breaks

When a document is signed, the signing software computes a cryptographic hash over a defined byte range covering the document, then encrypts that hash with the signer's private key and embeds the result.

Verification reverses it: the viewer recomputes the hash from the file in front of it and compares against the decrypted value. If a single byte differs, the comparison fails.

Removing pages does not alter one byte, it alters most of them — the page tree, the cross-reference table and every object offset shift. The signature covers the document as a whole, so there is no way to carry it onto a subset of pages. A signature is a statement about one specific file, and a split produces a different file.

What the Tools That Claim It Are Doing

Several products advertise splitting signed PDFs. What survives is the appearance: the rendered name, date and signature graphic drawn on the page. The cryptographic object is either dropped or carried over in a state that will not validate.

Open such an extract in a PDF reader and the signature panel will report the signature as invalid or the document as changed since signing. For circulating a reference copy that is harmless. For anything evidential it is worse than useless, because the page still looks authoritative.

What To Do Instead

SituationApproach
Sharing a few pages for readingSplit freely, label it an excerpt, keep the signed original as the record
The extract must be verifiableHave the signer sign the extract as a new document
Recipient must verify the whole thingSend the original unmodified and point them to the relevant pages
Multiple parties signing one fileAdd signatures to the unchanged document rather than splitting and recombining

The general rule: treat the signed file as immutable evidence and let everything else be a derived copy.

Splitting the Document

If an unsigned extract is what you need, the PDF Splitter will produce it in your browser without uploading the document — worth having for a signed contract, which is rarely something to hand to a third-party server. Your original stays untouched on disk.

Split a PDF locally →

If the extract needs to be signed in its own right, the Sign & Fill PDF tool adds a visible signature. Note that this is an electronic signature, not a certificate-based digital signature, so use it where a drawn signature is what is expected.

Frequently Asked Questions

Can I split a PDF without losing the digital signature?

No. A digital signature covers the entire signed document, not individual pages, so any tool that produces a smaller file breaks it. This is a property of how the signature is computed, not a limitation of a particular application, and no tool can work around it.

Why does splitting invalidate the signature?

Signing computes a cryptographic hash over a defined byte range of the file and encrypts it with the signer's private key. Validation recomputes that hash and compares. Removing pages changes the bytes, so the recomputed hash no longer matches and validation fails — which is exactly what the signature is designed to detect.

Some tools advertise splitting while keeping the signature. What do they actually do?

They preserve the visible signature appearance — the drawn name or image — while the cryptographic signature is gone. The extracted pages look signed but will not validate. That is fine for reference, and misleading if anyone treats the result as proof of signing.

What should I do if I only need to send a few pages?

Keep the signed original intact as the authoritative record and send the extract alongside it, clearly labelled as an excerpt. Anyone who needs to verify the signature checks the original. If the extract itself has to be verifiable, it must be signed again as a new document.

Does merging a signed PDF into another document also break the signature?

Yes, for the same reason. Any structural change to a signed document invalidates the signature unless it is an incremental update the format explicitly allows, such as adding a second signature to an unchanged file.