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.
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.
AES-256-GCM is authenticated encryption, which matters more than the key size for most real uses. Beyond keeping the content secret, it detects tampering: altering a single byte of the ciphertext makes decryption fail outright rather than quietly producing different plaintext. That property is what makes it safe to send an encrypted blob through a channel you do not control, because a modified message is rejected rather than misread.
The password is the whole security model, and the arithmetic is unforgiving. Key derivation stretches it with PBKDF2 so each guess is expensive, but stretching only multiplies the attacker's cost — it cannot manufacture entropy that was never there. A short or common password remains guessable no matter how strong the cipher behind it, so the practical advice is a long random passphrase from a generator rather than something memorable. There is also no recovery path by design: no reset, no hint, no copy of the key anywhere.
Common use cases
- Sending a credential or recovery code to a colleague through a channel you do not consider private.
- Storing sensitive notes in a synced notes app or cloud drive without trusting the provider with the contents.
- Keeping a private journal entry or record inside an otherwise shared document.
- Passing information to someone who has no compatible encryption software, since decrypting needs only a browser.
- Archiving details you need to retain but not read often, where the risk of exposure outweighs the convenience of plain text.