Encrypt and Decrypt Text
Password-protect a message with AES-256 — encrypted and decrypted in your browser.
Stays on your device. This tool runs in your browser — nothing you paste or open ever leaves it. Nothing uploaded, nothing to leak.
What the encryption actually does
AES-256-GCM is an authenticated cipher, which means it not only hides the contents but detects tampering — if a single character of the encrypted block is altered, decryption fails rather than returning corrupted text. Your password is not used as the key directly; PBKDF2 stretches it over 250,000 rounds with a random salt, which makes guessing passwords far slower for an attacker. The salt and IV are stored alongside the ciphertext, so you only need to keep the one block.
What it is not
The security rests entirely on your password — a short or reused one can be guessed no matter how strong the cipher is. This is intended for sending a note or a snippet safely, not as a substitute for a password manager, full-disk encryption, or end-to-end encrypted messaging. Nothing is stored here, so a lost password means the text cannot be recovered by us or anyone else.