How does this text encryption work?
This tool uses AES-256-GCM, a strong, authenticated encryption standard, with a key derived from your password using PBKDF2. Encryption and decryption happen entirely in your browser via the Web Crypto API. Without the correct password, the ciphertext cannot be read.
Important notes
Encryption is only as strong as your password — choose a long, unique one. There is no password recovery: if you lose it, the text cannot be decrypted. Share the password through a separate, secure channel from the ciphertext.
Private by design
Because everything runs locally, your plaintext and password are never transmitted or stored. It’s a quick way to protect a note or message before sending it over an untrusted channel.