Can you see my files? +
No — and this isn't a policy thing, it's a technical impossibility. All encryption runs in your browser using the Web Crypto API. Your file data never leaves your device. We have no server-side component that could receive it.
What happens if I forget my password? +
Your file is gone. We don't store passwords, hints, recovery keys, or any metadata. This is the core of zero-knowledge design. Use a password manager and back it up.
Is AES-256 actually unbreakable? +
With a strong password — effectively yes. AES-256 has never been broken. The bottleneck is always the password. We use PBKDF2 with 200,000 iterations to make brute-force attacks computationally infeasible even on dedicated hardware.
Can I encrypt video files? +
Yes. Any file format works — MP4, MKV, MOV, AVI, whatever. The free tier handles up to 500MB, Pro handles up to 10GB. For truly massive files (100GB+), the CLI tool is the best approach.
Does it work offline? +
Yes. Once the page is loaded, you can disconnect from the internet and it still works. The encryption is entirely client-side with no external calls during the process.
What's in the CLI tool? +
The CLI (Pro+) lets you encrypt/decrypt from the terminal, batch process entire directories, pipe into scripts, and automate workflows. It uses the same AES-256-GCM format so files are fully cross-compatible with the web app.