Password protect or unlock a PDF
Add AES-256 password protection or remove a known password. Your file is processed briefly and never stored.
PDF Preview
This tool uses a server-side service for processing; uploaded files or requests are not kept for long-term storage.
About
Password-protecting a PDF is one of those tasks that lives in a strange place between security theatre and real cryptography. Done well, AES-256 encryption applied at file level keeps a document genuinely unreadable without the key — even if someone forwards the email it was attached to, even if it ends up on a shared drive by mistake, even if a phone is lost with the file cached locally. Done badly, with weak passwords or with the older RC4 encryption that some tools still default to, it's barely more than a speed bump for anyone who actually wants the contents. The choice of encryption strength and password quality is the difference between the two outcomes; the tool here defaults to AES-256 because the older options have known weaknesses that no longer hold up against modern hardware.
The most common reason people reach for this is email security. Legal teams send NDAs and term sheets, HR departments send offer letters and salary slips, healthcare providers send test results, accountants send year-end statements. In all of these cases the email itself is going through Microsoft, Google, or whoever the recipient's mail provider happens to be, and the assumption that nothing further is needed because 'email is encrypted in transit' misses the bigger picture: the file lives on disk on the recipient's machine, it might get forwarded, it might end up in a backup, it might end up in an inbox that gets compromised six months later. Encrypting the PDF itself moves the security boundary from the transport to the file, which is where it usually needs to be.
There's an important distinction between the two passwords PDF actually supports. The user password (sometimes called the open password) is the one that prevents the file from being opened at all without entering the correct string. The owner password is a different concept: it controls permissions like whether the document can be printed, whether text can be copied, whether annotations can be added. A PDF with only an owner password set will open without prompting but will refuse to print or copy in a compliant reader. A PDF with only a user password set will demand the password to open, after which the user has all permissions. Most people want the user password; the owner password is a niche feature that only makes sense when you genuinely care about permission gating from compliant readers.
Permission enforcement is the part where this whole feature stops being cryptography and starts being a request. The PDF specification defines permissions, compliant readers like Adobe Acrobat, Apple Preview, and Foxit honour them, but the bytes on disk still contain the full document content — anyone determined to bypass the permission flags can do so with off-the-shelf tools in about thirty seconds. That's the actual security posture: permissions discourage casual copying and printing, the user password genuinely prevents reading. If real secrecy matters, the user password is the thing to lean on; the permission flags are a polite suggestion that compliant readers respect.
Removing a password from a PDF is the other half of this tool, and it shows up more often than people expect. A vendor sends an invoice with a default password the supplier set on every client's file; an old archive PDF has a password that nobody remembers the rationale for; a contractor needs to extract pages from a protected report for a presentation. As long as you know the password, removing it is a single operation. As long as you don't, no software in the world can recover it — modern PDF encryption is genuinely strong, and password recovery for forgotten AES-256 PDFs is computationally infeasible. The honest answer when someone asks for password recovery is that the source needs to be re-supplied without the password; cracking is not a realistic path.
Password choice deserves the same care it would get for any other account. Eight characters of mixed case, numbers, and symbols is roughly the minimum that resists offline dictionary attacks at current hardware speeds; twelve characters of the same complexity is comfortable. Names, dates, dictionary words on their own, and anything that could be derived from the file's contents (the recipient's name, the company's name, the document type) are the obvious things to avoid. A password manager is the right place to keep these — putting a strong password on a PDF and then writing it in the email body next to the attachment defeats the entire point.
There's a subtle interaction with mail servers and document gateways worth knowing about. Some corporate email systems will reject attachments they can't scan for malware, and an encrypted PDF is opaque to the malware scanner, which means the file gets quarantined or bounced. The standard workaround is sending the file unencrypted and putting the password in a separate channel (a phone call, a Signal message, an SMS) — but that defeats some of the convenience, so it's worth confirming the recipient's gateway will pass an encrypted PDF before assuming everything will arrive cleanly. For sensitive material going to law firms, banks, and healthcare providers, a quick check with the IT department on the receiving end is rarely wasted effort.
There's a sensible threat model behind all of this that's worth being explicit about. Password protection on a PDF defends against a specific set of risks: accidental forwarding of the email it's attached to, a laptop being lost with the file in the downloads folder, a phone being stolen with cached attachments, an unauthorised person glancing at a screen left unlocked. It does not defend against a determined attacker who can install software on the recipient's machine, against keyloggers, against the recipient themselves choosing to leak the document. Knowing what the password is actually buying you keeps expectations realistic — and prevents the more common failure mode of treating PDF encryption as a substitute for thinking about who you trust with the file in the first place.
Long-term archive considerations matter when the PDF is going to outlive the immediate use case. A contract encrypted today and put into cold storage may need to be opened in five or ten years, by someone who wasn't the original recipient, in software that doesn't yet exist. The password needs to be retrievable that whole time — through a password manager, a corporate key escrow, a notary, whatever the right channel is. The risk that compounds with time is not the encryption itself failing (AES-256 is going to remain unbroken for the foreseeable future) but the password being lost from human memory. For files genuinely meant to outlive their authors, a documented key recovery procedure is more important than the strength of the cipher.
The comparison worth making is with services like DocuSign, Adobe Sign, and similar e-signature platforms. Those handle a different problem — establishing that a specific person signed a specific version of a document — and they often layer their own access controls on top of the PDF. If the goal is signed proof of agreement, an e-signature workflow is the right answer. If the goal is preventing the file's contents from being readable in the wrong hands, encryption is the right answer. The two are complementary rather than substitutable, and the right pattern is usually e-sign first, then encrypt the resulting PDF if confidentiality also matters. Reversing the order corrupts the signature.
Operationally, the tool runs as a single round trip. Upload the PDF, choose to add or remove a password, enter the password (and any permission flags if you want owner-password behaviour), and download the result. Files are processed in temporary storage, the password is held in memory only and discarded when the request finishes, no account is required, and the output never carries a watermark or any kind of tracking marker. Multiple PDFs can run through one after another without hitting a quota, which matters when locking down a whole batch of documents for a single send. The processing itself is fast — encryption and decryption of a typical 10MB PDF takes a fraction of a second; very large documents take proportionally longer but still complete in a single pass without intermediate steps.
Use cases
- Share contracts or salary slips over email without risking accidental forwarding.
- Restrict copy or edit rights on a draft before sending to reviewers.
- Remove a password on a PDF you own so you can edit or print it again.
- Harden an archive before uploading to a shared drive.
How it works
- 1Pick 'Add password' or 'Remove password'.
- 2Enter the password and any permission limits.
- 3Download the protected or unlocked PDF instantly.
FAQ
What encryption is used?
We use qpdf to apply AES-256 encryption, the strongest option in the PDF spec.
Can you recover a forgotten password?
No — by design. PDF passwords are not recoverable without the password; please keep a record.
Do permissions actually restrict readers?
Compliant readers honour them, but a determined user can bypass them. For secrecy, use the password itself.
Is my password stored?
No. Passwords are used in memory only and discarded when the request ends.