The short version

Restrictions (the file opens but blocks printing or copying) come off without any password, because they were never enforced by encryption.

Encryption (the file will not open without a password) requires the password. Supply it once and the tool writes an unlocked copy. Without it, nothing can be done.

Removing protection from a document you own is a routine, legitimate task. A bank statement you cannot print. A payslip you need to forward to a mortgage adviser. A report you have to combine with others and cannot, because the encryption blocks every tool from reading it.

Two locks, two answers

The PDF specification defines both, and they work so differently that treating them as one thing is the source of most confusion on this subject.

ComparisonWhich lock you are looking at
User passwordencrypts the contenta8 f3 91 dd 4c 02 be 77 1aNothing can read the pages without the key.Owner passwordsets a requestDear Ms Whitfield, further toThe pages are readable the whole time.
One needs the password and one never protected anything to begin with.
Telling them apartBehaviour and requirement
  • Opens, printing greyed outOwner password, none needed
  • Opens, cannot select textOwner password, none needed
  • Opens, editing blockedOwner password, none needed
  • Prompts before displayingUser password, required
  • Prompts on a thumbnailUser password, required
  • Other tools refuse to open itUser password, required

The asymmetry looks strange until you see what each one does. An owner password writes a set of flags into the file: printing not permitted, copying not permitted, editing not permitted. Nothing is encrypted. Readers honour the flags because the specification asks them to, and a tool that declines to honour them is not defeating any cryptography.

A user password is different in kind. It feeds a key derivation function whose output encrypts every content stream in the document. Without the password there is no key, and without the key the page data is noise.

Removing restrictions

No password is involved because none is needed. The tool reads the document, clears the permission flags, and writes the file back out. Everything else is copied across untouched.

Password required
None

The restrictions were advisory flags, not encryption. There is nothing to decrypt.

Change to the pages
None

Content streams are copied byte for byte. Text, images and layout are identical.

What is removed
Flags only

The permission bits, and the owner password entry that set them.

This is not a security hole
People often assume removing restrictions must exploit some weakness. It does not. The PDF specification is explicit that permission flags depend on reader cooperation, and it has been that way since the 1990s. Anyone treating owner restrictions as a security boundary has misunderstood what they are. If content genuinely must be protected, that is what the user password is for.

Removing a user password

Here the password does real work. You supply it, the tool derives the key, decrypts each content stream, and writes a new document with no encryption applied. From then on the file opens normally everywhere.

Where this runs matters more than usual. Handing an encrypted document and its password to a web service means handing over both halves of the protection at once, to a machine you know nothing about. A browser-based tool reads the file into local memory, does the decryption in JavaScript or WebAssembly, and hands back a download. Neither the file nor the password crosses the network.

The password is the sensitive part
People reuse passwords, including on documents. A password typed into an unknown website is a password that site now has, alongside a document that tells it who you are. That combination is worth more than the document alone. If a tool asks for both, it should be running on your machine.

What the unlocked file looks like

Identical. Unlocking is not a conversion and not a re-render, so there is no quality question to ask.

Text remains selectable vector text. Images keep their exact resolution and encoding. Annotations, form fields and bookmarks carry over. The only differences are that the encryption dictionary is gone and the permission flags are cleared, both of which live in the file structure rather than on the page.

What is removed

The protection layer

  • The encryption dictionary and its key derivation
  • Permission flags for printing, copying and editing
  • The password prompt on opening
  • Restrictions that blocked other tools from reading it
What is preserved

Everything you can see

  • Page content, byte for byte identical
  • Image resolution and encoding, untouched
  • Fonts, annotations, form fields and bookmarks
  • Document metadata, unless you strip it separately

Why this comes up

The usual trigger is not wanting to defeat protection, it is wanting to do something ordinary that protection is blocking.

Encrypted PDFs cannot be merged, split, compressed or converted, because every one of those operations needs to read the page objects and encryption exists to prevent exactly that. A bank statement that has to go into a mortgage application bundle has to be unlocked before it can be merged. That is the single most common reason people arrive at this.

Unlock, do the work, then re-protect
If the finished document still needs protection, apply it at the end rather than trying to preserve the original encryption through the process. Unlock the inputs, assemble the document, then set a fresh password on the result. The protection you apply last is the one that matters, and it covers the whole document rather than one part of it.

What this cannot do

It cannot open a file whose user password you do not have. No tool can, for anything using modern encryption, and any tool claiming otherwise is either removing owner restrictions and renaming the operation, or guessing passwords and hoping yours is weak.

It also cannot tell you whether you are entitled to remove the protection. Technical possibility and permission are separate questions, and only one of them is the tool's business.

Check you have the right
Your own statements, your own scans, documents your organisation produced: uncontroversial. A purchased ebook, a licensed research report, anything supplied under terms that forbid it: not. Some jurisdictions treat circumventing a protection measure as an offence in itself, separate from anything you do with the content afterwards.

Unlock a PDF in your browser

Removes restrictions, or the password if you have it. The file never leaves your device.

Open Unlock PDF

Common questions

What changes and what does not.

01Can I remove a password I do not know?

Only if it is an owner password, meaning the file opens and merely restricts what you can do. Those restrictions are flags rather than encryption and come off without any password. A user password, the kind that blocks the file from opening, genuinely requires the password.

02Does unlocking reduce quality?

No. Unlocking removes the encryption layer and the permission flags, both of which live in the file structure rather than on the page. Content streams are copied across untouched, so text stays sharp and images keep their original resolution.

03Why do other tools refuse to open my encrypted PDF?

Because they cannot read it. Merging, splitting, compressing and converting all require reading the page objects, and encryption is specifically designed to prevent that without the key. Unlock the file first and every other tool will work normally.

04Is it safe to unlock a PDF online?

It depends entirely on whether the file is uploaded. A tool that runs in your browser keeps both the document and the password on your machine. A tool that uploads is receiving a sensitive document and its password together, which is a great deal to hand to a service you cannot inspect.

05Can I put the password back afterwards?

Yes. Protecting a PDF is a separate operation you can run at any time, and it is generally better to do it last, after the document is finished, so the protection covers the final file rather than one component of it.

06What happens to form fields and annotations?

They survive. Unlocking does not modify the document structure beyond removing encryption and permission flags, so form fields, comments, highlights and bookmarks all carry across intact.