About Text Encryptor
The password is the entire security model: the key is derived from it, nothing is stored, and there is no recovery path. A weak password makes AES-256 beside the point, and a forgotten one makes the text permanently unreadable.
Lock a message with a password using AES-256-GCM encryption, then share the ciphertext and decrypt it later with the same password. Your message and password never leave your browser.
Encrypt a message with a password using AES-256-GCM — the same strong, authenticated encryption trusted for sensitive data — then share the result and decrypt it later with the same password. It is the simple way to protect notes, credentials or messages you need to store or send through an insecure channel.
The key is derived from your password using PBKDF2 at 150,000 iterations, which is what makes a short password expensive to attack rather than instant. Without the correct password the ciphertext cannot be read, and there is no reset.