Logo

Encrypt File Online

Any format, one password, nothing uploaded. The file is rebuilt in this tab and lands back in your downloads folder.

Drop a file here, or choose one

Any format. Documents, images, archives, anything.

Test the decrypt before you delete the original. There is no recovery here and no copy anywhere else. Encrypt, download, then decrypt the result and check it opens — every time, not just the first time.

A file has to go somewhere you do not trust — an email, a shared drive, a USB stick that lives in a bag. Once it leaves your machine you have no say in who opens it or how many copies exist. Encrypt file online first and the copy travelling around is useless without your password.

How to password protect a file free of charge

Drop it in, type a password twice, press the button. The encrypted copy downloads with .owk on the end and your original is left exactly where it was.

We never modify the file you chose. That is deliberate: a tool that encrypts in place has one bad moment between reading and writing, and the cost of that moment is your data. Encrypt to a copy, check the copy, then delete what you no longer need.

The password does the actual work. Ours is not a stronger cipher than anyone else's — AES-256 is AES-256 — so the only variable that matters is what you choose, and length beats punctuation every time.

What AES file encryption in the browser can and cannot do

It scrambles the contents so thoroughly that the file is noise without the password. It runs on your machine, so nothing is uploaded and there is no server copy to subpoena or leak.

Three things it does not do, which most pages skip. The file size stays visible, so a 4 GB video still looks like a 4 GB video. The original filename is stored in the header so we can restore it, and that header is readable without a password — rename the file first if the name itself gives something away.

And it does nothing about copies that already exist. If the plain version has synced to cloud storage, the provider has it and probably keeps earlier versions too. Encrypt before the file goes into a synced folder, not after.

Encrypting a file without installing software on a locked-down machine

This is why people arrive here from work laptops. No installer, no admin password, no software request ticket, nothing left in a temp folder afterwards.

The honest comparison with desktop tools is mixed. VeraCrypt and GnuPG do things this cannot: encrypted volumes that mount like drives, keys that let two people exchange files without ever agreeing a password, signatures that prove authorship. For a single file going to someone you can phone, none of that is needed.

One caveat about work machines specifically. Browser encryption protects the file; it does not protect you from the laptop. Managed devices often run monitoring software that can see the file before we do, and whether browser encryption tools can be trusted goes through how to think about that.

Why the file is processed in chunks

Encrypting a large file in one call needs the whole plaintext and the whole ciphertext in memory at the same time. That is where browser file encryptors actually fall over, usually somewhere past a few hundred megabytes and always without explanation.

We split the file into one-megabyte pieces, each encrypted and authenticated on its own. You get a progress bar that means something, and memory use stays flat instead of doubling the file size.

There is a trade-off worth naming. Authenticating each chunk proves each chunk is intact; on its own it would not prove that chunks are all present and in order. The expected count goes into the header and is checked on the way back, which closes that gap — and it is why a half-finished download is reported as truncated rather than as a wrong password.

Where a password-protected ZIP falls short

Zipping with a password is the familiar route and it is not equivalent, though the gap is narrower than purists suggest.

Legacy ZIP encryption is genuinely weak and consumer software cracks it. Modern AES-mode ZIP is sound, but many tools still leave the list of filenames readable inside the archive, so anyone can see that you sent resignation-letter.docx without opening it.

Here the name lives inside the encrypted body. If you want the ZIP route anyway, our bundle the files into an archive first page will build it, and you can encrypt the archive here afterwards. For a single text document there are simpler options still, which protecting a plain .txt file sets out alongside the ones that quietly fail.

Test the round trip before deleting anything

Encrypt, download, switch to Decrypt, run it back through, open the result. Every time — not just the first time you use the tool.

The reason is unglamorous. Typos in passwords happen, downloads get interrupted, and the moment you discover either is the moment you no longer have the original. We cannot help at that point, because there is no copy of your password or your file anywhere. Losing access to your own file covers what remains possible, which is less than the recovery industry implies.

PDFs are the one format worth handling differently. They have real encryption built into the format, which keeps the file openable by any PDF reader with the password — our password protect a PDF page uses that instead of wrapping the file.

Encrypt file online, then move the password separately

The encrypted copy can travel through anything: email, a shared drive, a messaging app, a memory stick left on a desk. That is the whole point of doing this first.

The password cannot travel the same way. Sending both in one thread leaves you exactly where you started, and getting the password to the other person is the part people improvise badly. For short messages instead of files, the decrypting it again later page handles the other end of the same job.

Beyond that, the habit is simple. Encrypt before the file moves, keep the password somewhere designed for passwords, and verify the copy opens before you trust it.

Frequently Asked Questions

Does the encrypted file hide what kind of file it was?

+
Partly. The extension is gone from the outside, but the original filename is stored in the header so we can hand it back correctly, and the header is readable without a password. If the name itself is sensitive, rename the file before encrypting it.

Why is the encrypted file slightly larger than the original?

+
Each chunk carries a starting value and an authentication tag, and there is a small header on top. On a one megabyte file the overhead is a few dozen bytes. Anyone promising encryption that also shrinks a file is compressing first, which is a separate step with its own trade-offs.

Can I encrypt a folder?

+
Not directly, because a browser sees files rather than folders. Bundle the folder into an archive first and encrypt the archive, which also hides the individual filenames inside it. That is one genuine advantage the archive route has over encrypting files one by one.

What happens if the download is interrupted halfway?

+
You get a file that fails to decrypt, and we will tell you it is truncated rather than blame your password. Each chunk is checked on the way back and the expected chunk count is stored in the header, so a short file is detected rather than silently producing partial output.

Is this the same as a password-protected ZIP?

+
The idea is the same and the details are not. Older ZIP encryption is weak enough to be broken by consumer software, and even AES-mode ZIP leaves the list of filenames readable in many tools. Here the whole file including its name is inside the encrypted body.

Why cap the size at 250 MB when my disk has plenty of room?

+
Because a browser tab is not your disk. Rebuilding a file holds the input and the output in memory at once, and past a few hundred megabytes ordinary laptops start failing partway through. We would rather state a ceiling than let a long job collapse at ninety percent.

Should I compress before or after encrypting?

+
Before, always. Encrypted data is statistically random, so a compressor can find nothing to squeeze and the archive comes out the same size or larger. Compress first, then encrypt the archive.

Can someone tell that two encrypted files started out identical?

+
No. Every run uses a fresh random salt and fresh starting values, so encrypting the same file twice produces two completely different outputs. Sizes will match, which is a hint but not a confirmation.

Does this protect a file already synced to cloud storage?

+
Only from that point forward. If the plain version has already synced, the provider has it and probably has earlier versions too. Encrypt first, then move the encrypted copy into the synced folder, and clear the version history for the original.

Can I open one of these on a phone or another computer?

+
Yes, on any device with a modern browser and this page. Nothing is tied to the machine that encrypted it, because the key comes entirely from your password. That is also why the password is the only thing standing between anyone and the contents.

Related Tools You Might Like

Advertisement