The AES Text Encrypter / Decrypter protects any message with AES-256-GCM encryption derived from a password. It generates a unique salt and IV per message and bundles everything into a Base64 string you can share over email or chat — only someone with the password can decrypt it.
How it works
Enter your text and a password, and the tool derives a 256-bit AES key from the password using PBKDF2 (150,000 iterations of SHA-256). It then encrypts the text with AES-GCM, which provides both confidentiality and tamper detection. A random salt and initialization vector are generated for every message and packed into the output, so encrypting the same text twice produces different results.
To decrypt, paste the Base64 output and enter the same password. If the password is wrong or the text was altered, decryption fails safely.
Use cases
- Send a password, note or API key over email or chat without exposing it in plain text
- Store sensitive snippets in a document while keeping them unreadable
- Learn how authenticated symmetric encryption works in practice
Security notes
Everything runs in your browser via the Web Crypto API — no text or password is ever uploaded. Share the encrypted text and the password through separate channels, and choose a strong password, since the security of the message depends entirely on it.
Related searches
Recommended Security, Hash & Crypto tools
Explore more free online tools related to AES Text Encrypter / Decrypter.
Email Validator
Check whether an email address is valid — verify syntax, structure, TLD and flag disposable or role-based addresses.
Credit Card Validator
Validate a credit card number with the Luhn algorithm and detect its brand (Visa, Mastercard, Amex and more).
Random PIN Generator
Generate secure random numeric PINs of any length using a cryptographically strong random generator.
Secure Random Token Generator
Generate cryptographically secure random tokens — API keys, secrets and salts — in hex, Base64 URL or alphanumeric.
Hash Comparison Tool
Compare two hashes or checksums to verify they match, with algorithm detection and character-level difference highlighting.
2FA / TOTP Code Generator
Generate time-based one-time passwords (TOTP) from a Base32 secret — the same 6-digit 2FA codes as Google Authenticator and Authy.