What is the easiest way to encrypt a file?
For a single file, browser-based encryption is the fastest route — there is nothing to install and, with a client-side tool, nothing is uploaded. On Windows, right-clicking and creating a password-protected 7-Zip archive is equally quick if 7-Zip is already installed.
How do I encrypt a file with a password?
Every method above accepts a password. The tool converts it into an encryption key using a key-derivation function — this site uses PBKDF2 with 600,000 iterations, which makes each guessing attempt expensive. Your password's own strength still sets the ceiling, so use a long passphrase.
Is encrypting a file online safe?
It depends entirely on whether the file is uploaded. A service that encrypts on its own servers sees your plaintext and your key. A client-side tool performs the encryption in your browser so nothing is transmitted — you can verify that in the Network tab of your browser developer tools.
Can I encrypt a folder rather than a single file?
Compress the folder into an archive first and encrypt the archive, or use a VeraCrypt container that mounts as a drive. On Windows, 7-Zip encrypts an entire folder in one step — enable the encrypt-file-names option so the folder structure is hidden too.
Does encryption change the file size?
Only slightly. Encryption adds a small fixed overhead for the header, initialisation vector and authentication tag — typically a few hundred bytes. If you compress before encrypting, the result is usually smaller than the original. Compressing after encrypting achieves nothing, because encrypted data is statistically random.
Which is better: AES or ChaCha20?
Both are secure and neither has a practical attack against it. AES-256 is usually faster on desktop and laptop CPUs because of dedicated hardware instructions; ChaCha20-Poly1305 is faster in pure software, which favours older phones and low-power devices. If you have no specific reason to choose, take the default.