File Encrypter — Free, Browser-Based AES-256
Encrypt any file with AES-256-GCM in your browser. Random salt per file, PBKDF2 key derivation. The password cannot be recovered if lost.
File Encrypter
Files never leave your browserDrop files here or click to pick
AES-256-GCM · PBKDF2 (200k iters) · runs locally · Encrypt starts immediately after drop
You're on 7BusyBoss — 300+ free tools that run instantly in your browser. No signup, nothing uploaded.
Browse all File Security →Encrypting the same file twice produces different results
Each encryption generates a fresh random salt and initialisation vector. Encrypt document.pdf with the same password twice and the two outputs differ completely — different bytes, different hash. This is not a bug. It is the property that makes the encryption sound.
This defeats precomputed-hash attacks
A rainbow-table attack relies on deriving keys for common passwords once, then matching them against many captured files. A random 16-byte salt per file means an attacker must redo the key derivation for every file and every password guess — the precomputation buys them nothing. Combined with PBKDF2-SHA256 at 200,000 iterations, each guess costs real time even on fast hardware.
What happens when you encrypt a file here
The tool applies AES-256-GCM. It generates a 16-byte random salt and a 12-byte random IV, derives the key from your password with PBKDF2 at 200,000 iterations, encrypts the file, and writes a .enc container: the magic bytes 7BB1, then the salt, the IV, the ciphertext, and a 16-byte authentication tag. All of it happens in your browser — the file and the password never leave your device.
Losing the password means losing the file
There is no reset, no backdoor and no recovery service. Forget the password and the file is gone: there is no master key, and brute-forcing a PBKDF2-derived AES-256 key is not practical. The container format is also specific to this site, so only the matching File Decrypter can open it — no third-party utility will. Store the password in a password manager before you close the tab. For sharing a bundle of files instead, see Password-Protect a ZIP.
How to use the File Encrypter
Takes about a minute. No signup, no download, your data stays in your browser.
- 1Open the tool. Scroll up to the File Encrypter above — it loads instantly in your browser, no install needed.
- 2Enter your values. The fields come pre-filled with realistic defaults so you can see how it works — replace them with your own numbers.
- 3Read the result. The output updates instantly. Copy or share it — nothing is uploaded to a server, everything stays on your device.
Frequently asked questions
Common questions about the File Encrypter.
What if I forget the password?
The file is permanently unrecoverable. There is no master key, no reset mechanism and no backdoor — the key exists only as something derived from your password at the moment of decryption. Store it in a password manager before you close the tab.
Is the .enc file format standard?
No. It is specific to this site, identified by the 7BB1 magic bytes at the start of the file. Only the File Decrypter here can open it; general-purpose archive and encryption utilities will not recognise the container even with the correct password.
Why does encrypting the same file twice produce different output?
Each run generates a new random salt and initialisation vector, so the ciphertext differs even for identical input and password. This is deliberate: it prevents an attacker from precomputing key derivations and reusing them across files, and stops identical files being recognisable as identical.
How strong is the encryption?
The tool uses AES-256-GCM with a key derived by PBKDF2-SHA256 at 200,000 iterations — both standard, well-reviewed choices. The practical strength depends almost entirely on your password: a short or reused one undermines everything above it, so use a long, unique passphrase.
Community rating
Discussion (0)
No comments yet. Start the discussion.
Keep exploring
Related tools across 7BusyBoss — all free, all instant.
More in File Security
- Remove ZIP Password
- File Decrypter
- Text Decrypter
- Text Encrypter
- Password-Protect a ZIP
- File Hash Generator