What does protecting a PDF actually do?+
It encrypts the file's contents with a password, so anyone trying to open it has to supply that password first. With AES-256 — the default — the page content, text, images, and metadata are mathematically unreadable without the key derived from your password. Optionally, you can also add permission restrictions (block printing, copying, editing) that apply once the file is open. The encryption is the security boundary; the restrictions are a layer on top.
Is the Protect PDF tool free? Are there usage limits?+
Yes — completely free, no signup, no email collection, no daily quota. Encrypt as many PDFs as you need, of any size your device can hold in memory, with no watermark and no premium tier. The page is supported by occasional unobtrusive ads, not by charging for the actual functionality or selling your files.
Does my file or password ever leave my device?+
No, never. The encryption runs entirely inside your browser tab — your PDF is read into memory, the password is fed into the AES key derivation function, and the encrypted output is written to a downloadable blob. There is no upload, no server round-trip, no cookie touching the file. You can verify this by opening your browser's DevTools → Network tab before dropping a PDF: you'll see zero network requests during encryption.
What happens if I forget the password?+
The file becomes permanently unreadable. PDF encryption derives its key from the password — there is no master key, no backdoor, no "reset link". Filoraio doesn't store the password (it never received it in the first place), and no legitimate tool — not Adobe, not iLovePDF, not anything else — can recover the contents without the original password. This is by design and is exactly what makes the encryption useful. Save the password in a password manager before you close this tab.
How strong should my password be?+
Strong enough that an attacker who guessed once per millisecond would still be guessing in a year. In practice that means at least 12 characters, with some mix of cases, numbers, or symbols. A passphrase of three or four random words ("trumpet-orange-fence-glide") is easier to remember than a short password full of substitutions and usually stronger. Avoid anything related to the file ("contract2026", names, dates). The strength meter in the form is a rough nudge, not a guarantee — long beats clever almost every time.
What's the difference between the password and the restrictions?+
The password is the lock — without it, nobody can open the file at all. The restrictions are rules that apply after the file is open: block printing, text copying, content editing, or annotations. Two separate mechanisms in the PDF spec. Filoraio encodes both in a single protected file using one password, so you only have to remember the one you typed. Well-behaved readers (Adobe Acrobat, Apple Preview, Chrome, Firefox, WPS Office, every mainstream mobile reader) prompt for the password to open the file and then enforce the restrictions you chose — Print is greyed out, Copy fails, and so on.
AES-256 versus RC4 — which should I pick?+
AES-256 unless you have a specific reason not to. AES-256 (PDF 2.0 standard, ISO 32000-2) is supported by every PDF reader from roughly 2017 onwards — Adobe Reader 11+, Preview on every Mac, every browser's built-in viewer, every mainstream mobile reader. RC4 (PDF 1.4, ISO 32000-1) is the older legacy algorithm — weaker cryptographically but accepted by basically every PDF reader ever made, including very old enterprise viewers. Use RC4 only when you know the recipient's reader is too old for AES.
Will the protected PDF open on iPhone, iPad, Mac, Android, and Windows?+
Yes — AES-256 protected PDFs open in Apple Preview, the iOS and Android Files apps, Adobe Acrobat Reader on every desktop platform, Chrome/Edge/Firefox/Safari's built-in viewers, Google Drive's preview, and basically every modern PDF reader. The recipient is prompted for the password on first open, just as they would be for a bank-issued statement. RC4 has even broader compatibility if you specifically need to support a reader from before 2017.
Are the permission restrictions actually enforced?+
Honestly: yes by well-behaved readers, no by determined attackers. Adobe Reader, Apple Preview, and every mainstream consumer PDF viewer respect the permission flags — "print" will grey out, "copy" will fail. But the flags themselves are part of the file metadata, not enforced cryptographically. Anyone with the user password can use various open-source tools (including our own Unlock PDF) to strip the restrictions and produce an unrestricted copy. Treat restrictions as "please don't" rather than "you can't". The user password is the real security boundary.
Will my protected PDF look identical to the original?+
Yes — encryption wraps the existing page content; it doesn't touch text, fonts, images, layout, or page count. The recipient sees the same document they would have seen if you'd sent it unencrypted, after they enter the password. Filoraio doesn't downsize, re-compress, or reflow anything during encryption.
Does encryption slow down opening the file?+
Imperceptibly. Once a reader has the password, decryption happens as the file streams in — modern devices process AES-256 at hundreds of MB per second, faster than the disk read itself for typical document-sized PDFs. The only user-visible difference is the password prompt at the start. Page-flipping, search, and annotation performance are unchanged.
Can I add a password to a PDF that's already password-protected?+
Not directly — Filoraio detects already-encrypted inputs and refuses, because layering two passwords on the same file produces a document most readers can't open cleanly. To change the password on an existing protected PDF, unlock it first using our Unlock PDF tool (you'll need the current password), then bring the unlocked copy back here and protect it with the new password.
Is it legal to add a password to a PDF I received from someone else?+
Encrypting your own copy of a file you legitimately received is fine — it's analogous to keeping a printed copy in a locked drawer. What you can't do is *redistribute* a protected version in a way that misrepresents the source, removes attribution, or violates the original sharing agreement. If a file came with a sharing license or NDA, the encryption layer doesn't override those terms — it adds to them. When in doubt, ask the original sender.
Can I protect several PDFs in one batch?+
Not in a single batch — this version of the tool encrypts one PDF at a time. To protect several, drop them in sequence; each one is an independent encryption with its own download. You can reuse the same password across files (common for distributing related documents to one recipient) or pick a different one each time. The clear-and-restart button at the bottom of the page makes it a two-click cycle per file.