🧰 Aura Tools
PDF Security

How to Password Protect a PDF (And What That Protection Really Does)

"Password protected" sounds like one thing. In the PDF specification it is two entirely different mechanisms, and one of them provides essentially no security at all. People routinely pick the weak one and believe their document is safe.

Two passwords, two very different guarantees

The user password: real encryption

Also called the open password or document open password. Set one and the actual content of the file is encrypted. The text streams, the images, the fonts — all of it is ciphertext on disk.

Without the password there is nothing to read. Not "the reader refuses to show it" — there is genuinely no plaintext present. A hex editor shows you noise. This is the real thing.

The owner password: a request

Also called the permissions password. This one sets flags in the document: do not allow printing, do not allow copying text, do not allow editing, do not allow extraction for accessibility.

Here is the crucial part. The content is not protected by these flags. The file opens for anyone, with no password prompt. The document is fully readable. All that stands between a reader and printing it is that their PDF software noticed a flag and chose to honour it.

Two passwords that sound alike and protect very differentlyThe difference is whether the bytes on disk are ciphertext or plain readable content.User password · the open passwordAlso called the document open password.WHAT IS ON DISK8f 2a d1 06 bb 7e 44 c9 1d 3f a0 22e5 71 9c 38 4d f2 60 ab 15 7d c4 90— no plaintext anywhere in the file —ENCRYPTEDReal protection. No key, nothing to read.Owner password · permissions onlySets flags: no print, no copy, no edit.WHAT IS ON DISKInvoice 4417 — total due 82,500Account: 0041-9926-77/Print false /Copy falseFLAG ONLYOpens for anyone. Flags can be ignored.Stripping an owner password is not cracking — the content was never encrypted at all.
Only the user password turns your content into ciphertext. The owner password is a note attached to readable content asking software to behave.

Software that chooses not to honour it — and plenty exists, including ordinary open-source libraries — simply ignores the flags. Removing an owner password is not really cracking; it is stripping a field from a file that was never encrypted.

So which should you use?

If the goal is only these people should be able to read this, you need a user password. Nothing else provides that.

An owner password is reasonable when your goal is to signal intent to cooperative users — discouraging casual printing of a draft, say. It is a "please don't", and it works on people who were not going to anyway. Treat it as etiquette, not security.

You can set both. A common combination is a user password so only recipients can open it, plus permission flags discouraging printing once they have.

Encryption strength actually matters

PDF encryption has evolved, and older options are genuinely broken rather than merely dated:

Choose AES-256 unless you have a specific reason not to. If a tool only offers RC4 options, that tells you something about the tool.

Your password is the weak point, not the cipher

With AES-256 in play, nobody is attacking the encryption. They are attacking the password, because that is enormously easier.

Which means the usual rules apply, and they matter more here than for a website login. A website can rate-limit attempts and lock an account. An encrypted file cannot. Whoever has the file can try passwords locally, as fast as their hardware allows, forever, with nothing to stop them.

So: length over cleverness. A passphrase of four or five unrelated words beats a short string with symbol substitutions, and you can actually remember it. Never reuse a password you use elsewhere. And do not put the password in the same email as the attachment, which is startlingly common and defeats the entire exercise — send it through a different channel.

What protection does not do

Encryption controls access to the file. It does not control what happens after someone legitimately opens it.

A recipient with the password can save an unencrypted copy, screenshot pages, print to a new PDF, or simply retype the content. This is not a flaw in PDF; it is unavoidable for any format you can read. If someone can see it, they can copy it.

The practical implication: password protection is the right tool for data in transit and at rest — a document sitting in an inbox, on a shared drive, on a lost laptop. It is the wrong tool for controlling what an authorised reader does afterwards.

Removing protection you are entitled to remove

Legitimate need for this is common: you set a password months ago and now need to merge the file with others, or your organisation has an archived document nobody can index because it is encrypted.

If you have the password, unlocking is straightforward — supply it, and save out a decrypted copy. Our PDF Tools include both protect and unlock, and both run entirely in your browser, which matters a great deal here: uploading a confidential document and its password to a third-party server to remove encryption rather defeats the purpose of having encrypted it.

Practical guidance

Try it yourself

Our free PDF password tool needs no account and adds no watermark — use it right now, as many times as you like.

Open PDF Tools →

Frequently Asked Questions

What is the difference between a user password and an owner password?

A user password (or open password) encrypts the file — without it the content cannot be decrypted at all. An owner password (or permissions password) leaves the file readable by anyone and merely sets flags requesting that readers disallow printing or copying. The first is genuine security; the second relies on software choosing to cooperate.

Can a password-protected PDF be cracked?

A file with only an owner password is trivially bypassed, because the content was never encrypted. A file with a strong user password and AES-256 encryption is, in practice, only as weak as the password itself — the encryption is not the weak point, but a short or guessable password is.

Does password protection stop someone copying my text?

Not reliably. Permission flags ask readers not to allow copying, and cooperating software honours them, but the text is still there in the file. Anyone who can open and read the document can ultimately capture its content. Permissions manage convenience and intent, not capability.

What encryption should I choose?

AES-256 where your recipients' software supports it, which covers essentially all current PDF readers. Avoid RC4-based options entirely — they appear in older PDF versions and are considered broken. If a tool offers 40-bit or 128-bit RC4, treat those as compatibility options rather than security ones.