How to Remove a Digital Signature From a PDF
A digitally signed PDF looks locked, but it is locked in a completely different way than a password protected PDF. This guide explains what is really stopping your edits, when you are allowed to remove the signature, and exactly how to do it without damaging the underlying document.
A signed PDF is not an encrypted PDF
If the file opens without a password prompt but refuses to let you edit, save, or extract text, what you are fighting is almost certainly a digital signature or an owner (restrictions) password, not an open password. Password recovery will not help. You need the techniques in this article instead, or you need the techniques documented in our article on owner password versus open password.
What a PDF digital signature actually is
A PDF digital signature is a cryptographic artifact embedded inside the PDF structure. Behind the pretty badge in the signature panel, Adobe or your chosen signing tool has inserted a special signature dictionary into the PDF, typically referenced from the AcroForm /SigFlags entry. That dictionary contains a ByteRange descriptor, a Contents field that stores the PKCS#7 signature blob, a reference to the signer's certificate, and a timestamp if one was added.
When the document is signed, the signing software computes a SHA-256 hash of every byte in the file except the slot reserved for the Contents field. That hash is then encrypted with the signer's private key and stored. When anyone later opens the file, the PDF reader recomputes the same hash and uses the signer's public certificate to decrypt the stored signature. If the two hashes match, the reader can prove two things at once: the document has not been modified since signing, and the signer really had access to the private key that matches the certificate.
Notice what is missing from that description. Nothing is encrypted. Nothing is hidden. The document text, images, and metadata are all plainly readable. That is why a signed PDF opens without a password: there is no password to ask for. The signature only protects against silent modification. It is a tamper-evident seal, not a lock. You can absolutely copy text out of a signed PDF, print it, and read every page without ever asking the signer for permission. What you cannot do is change so much as one byte without breaking the cryptographic binding that ties the document to the signer.
Why your edits keep invalidating the signature
Most people who arrive at this article already had a bad experience with a signed PDF. You opened it, tried to edit a typo, and either Acrobat refused outright or the signature panel immediately turned red with the message signature is invalid. The reason is the hash check. The signature covers every byte outside the Contents slot, so adding text, removing a page, or even changing the metadata shifts the byte layout and guarantees a hash mismatch.
PDF does have a mechanism to allow certain edits without breaking the signature. It is called an incremental update, and it appends new content to the end of the file without rewriting the previously signed portion. The signer can also declare a Modification Detection and Prevention level, commonly called the MDP permission level. MDP level 1 forbids any change. Level 2 allows form filling and signing. Level 3 additionally allows annotations. If the signer chose MDP level 2 or 3, filling a form field and adding a second signature are legal operations that preserve the original signature.
In practice most signed contracts you receive were signed with MDP level 1. That is why your edits do not work. The signer intended exactly this outcome. They wanted you to be able to read and print the document but not to change it. Any serious change has to be coordinated with them.
When it is legal to remove a signature
The legal question is not about the technology; it is about who signed and why. If you signed the document yourself and no one has countersigned, you own both the signature and the document. You can clear your signature, edit the file, and re-sign at any time. That is identical to scribbling your name on a paper draft and then crossing it out before you hand it to anyone.
If the document has been countersigned, or if it has been delivered to a counterparty who is relying on the signed copy, removing the signature becomes a different matter. The cryptographic evidence trail is part of the contract's legal value. Destroying it on a copy you are about to send back creates a document that looks like the original but no longer has the proof that binds the other party. Depending on jurisdiction this can be characterized as forgery, contract tampering, or document fraud.
Certain signature types warrant an even brighter red line. Notarized documents, court filings, and EU eIDAS qualified electronic signatures have statutory weight. Under eIDAS Regulation 910/2014, a qualified electronic signature has the same legal effect as a handwritten signature across the entire European Union, and producing an altered copy can trigger both civil and criminal liability. Visa applications, apostilled documents, and tax-authority filings all fall into this category as well. For these, the correct path is never to remove the signature. Request a fresh document, issue an amendment, or ask the authority for a replacement. Keep the original signed copy untouched in your archive.
Method one: clear the signature field in Acrobat
If you own the document and have decided you can legitimately remove the signature, the cleanest path is Adobe Acrobat Pro. Open the PDF, select the signature panel from the left-hand navigation, right-click the signature entry, and choose Clear Signature. Acrobat replaces the signature blob with an empty signature field and removes the cryptographic binding. The document is now editable again.
There is a caveat worth understanding. Clear Signature operates as an incremental update. The original signed bytes are still present in the PDF history; Acrobat has simply appended a new revision that marks the signature as cleared. Anyone forensically inspecting the file can recover the previous signed state. For a private edit, that is usually fine. When the goal is to produce a document that genuinely no longer carries the previous signature structure, a flatten step is needed.
To flatten, once the signature is cleared, use File, then Print, then Adobe PDF as the printer, and save the output. The printed file is a fresh PDF with no signature dictionary and no historical revisions. Alternatively, open the cleared file in qpdf with the command qpdf --empty --pages input.pdf 1-z -- output.pdf, or re-run it through Ghostscript with the pdfwrite device. All three approaches rebuild the byte stream from scratch.
Method two: qpdf and Ghostscript command-line
If you do not have Acrobat Pro, qpdf is a free open-source alternative that ships on every major platform. On macOS you can install it with brew install qpdf. On Ubuntu and Debian the package is called qpdf. On Windows the maintainers publish signed binaries. The single command qpdf --empty --pages signed.pdf 1-z -- unsigned.pdf takes the pages of the signed PDF and writes them into a brand new empty container. The new container has no AcroForm, no /SigFlags entry, and no signature dictionary. It is, from the reader's perspective, the same document, but it has no digital signature attached.
Ghostscript achieves the same result through a different route. The command gs -sDEVICE=pdfwrite -o unsigned.pdf signed.pdf re-renders the PDF through Ghostscript's PostScript interpreter and writes a fresh PDF. Any signature, form, or scripting structure is discarded because pdfwrite only emits static page content. Ghostscript is particularly useful when the signed PDF also has XFA forms or unusual structures that qpdf refuses to touch.
One important point about both of these tools. Because they rebuild the document, they strip not only signatures but also any legitimate accessibility tags, form fields, and bookmarks. For contracts and internal documents this is usually acceptable. For published material or accessibility-compliant documents, you will want to re-apply tags after the fact.
Method three: export and reimport
The lowest-tech approach is to export the signed PDF to Word, OpenDocument, or even a plain image export, and then reimport the result. macOS Preview's Export as PDF and LibreOffice Draw's File menu both do this reliably. The downside is cosmetic. Fonts may substitute, vector graphics may rasterize, and page breaks may shift slightly. The upside is that the output has absolutely no relation to the original signed structure. It is a completely new document.
This method is particularly useful when the signed PDF uses an unusual signing profile that qpdf and Ghostscript both stumble on, or when the document includes JavaScript or multimedia annotations that you do not want to carry over into the new version. Because the output is essentially a visual copy, it is also the correct choice when the original PDF was created from a scanned paper document that simply happens to have been signed afterwards. The scanned content comes through unchanged and the signature layer falls away.
What about signed and certified PDFs from government portals
Many tax authorities, land registries, universities, and immigration portals now issue documents as signed PDFs. The signature is there to prove the authority's endorsement, and the document is typically useless to its recipient without it. Removing that signature converts the certificate into an ordinary-looking PDF that the issuing authority will not recognize on verification. If you are submitting the PDF back to anyone who checks signatures, a cleared copy will be rejected.
The right workflow for these documents is to keep the signed original untouched and work from a print-to-PDF copy for personal reference. That way you retain the evidentiary original and still have an editable version for your own notes. If you genuinely need an editable but still signed version, ask the issuing authority to sign an updated PDF. Most official portals support re-downloading with updated content.
How to verify the result
After removing a signature, open the new file in Acrobat Reader and look at the left-side signature panel. If the panel is empty or does not appear at all, the signature has been fully removed. You can also inspect the PDF structure directly with qpdf by running qpdf --qdf --object-streams=disable output.pdf - and searching the output for the tokens /Sig, /AcroForm, and /SigFlags. An unsigned PDF contains none of them.
Finally, compute a SHA-256 hash of the original signed file and the new unsigned file. They must be different. If they are identical, something went wrong and the signature is still present. A hash difference combined with an empty signature panel confirms that the signature structure is gone and the document is clean enough to edit and re-sign.
Use only on documents you own or are authorized to modify
A digital signature is a legal artifact. Removing one from someone else's document, or from a countersigned contract, can expose you to civil or criminal liability. When in doubt, ask the signer for a replacement instead. For the broader legal discussion, read is it legal to unlock a PDF.
Frequently asked questions
My PDF is signed but I also need the password. Which do I tackle first?
Always the password. A signed and encrypted PDF cannot be read at all until you decrypt it, and the signature tooling cannot even parse the structure until that happens. Once the file opens, you can address the signature using the methods above.
Will removing the signature tell the signer?
No. Removing a signature is a purely local operation. The signer's copy is untouched. However, if you send the modified copy back to the signer or publish it, anyone verifying the document will see that the signature is missing.
Can I add my own signature after removing the old one?
Yes. Once the signature dictionary is gone, the PDF is an ordinary document. You can sign it yourself in Acrobat, Preview, or any signing platform such as DocuSign or Adobe Sign. The new signature is independent of whatever was there before.
What if the signature is eIDAS qualified?
Treat it like a notarized document. Do not attempt to remove it. If you need an editable version, request a new unsigned copy from the original signer or the issuing authority and keep the qualified version in your archive as legal proof.
Read next
If the document also refuses to print or copy, see owner password vs open password. For a deeper dive into PDF protection layers, read how PDF encryption works.