Text Encryptor
Encrypt and decrypt text with a passphrase using AES-256-GCM. Everything runs in your browser — nothing is ever uploaded.
How it works
Select Encrypt to protect a message, or Decrypt to recover one from an encrypted block.
Paste the text you want to encrypt (or the Base64 block you want to decrypt), then type a strong passphrase.
The browser derives a 256-bit key from your passphrase using PBKDF2 (100 000 iterations, SHA-256), then encrypts or decrypts using AES-256-GCM.
The encrypted output is a Base64 string containing a random salt, IV, and ciphertext — safe to copy, store, or share as text.