Is online file encryption actually secure?
It depends entirely on where the encryption happens. A service that uploads your file encrypts it on a machine you do not control, which means the operator can see the plaintext. This tool performs the encryption in your browser with the Web Crypto API, so the file never leaves your device and there is nothing for an operator to see.
What file types can I encrypt?
All of them. Encryption operates on raw bytes, so PDFs, Word and Excel files, photos, video, ZIP archives, source code, database dumps and VPN configuration files are all handled the same way. The original filename is preserved inside the encrypted file.
How strong is PBKDF2 with 600,000 iterations?
It meets current OWASP guidance for PBKDF2-HMAC-SHA256 and is the same order of magnitude used by major password managers. Each guess an attacker makes costs 600,000 hash operations, which turns a fast offline attack into a slow one. It does not rescue a weak password — it buys time proportional to the password's own strength.
Can I encrypt multiple files at once?
Yes. Select several files and they are encrypted in a batch, each producing its own .enc file. If you would rather have a single encrypted output, put the files in a ZIP archive first and encrypt the archive.
Should I compress before encrypting?
Compressing first is the correct order, and the tool offers it as an option. Encrypted data is statistically random and does not compress, so compressing afterwards achieves nothing. Compression is only applied when it actually reduces the size.
What happens if I lose the password or key?
The file is permanently unrecoverable. There is no reset link and no master key, because we never receive your key in the first place. This is a deliberate property of the design rather than a missing feature — save the key before you close the page.