AES Encryption
Encrypt and decrypt text using AES encryption
AES Encryption & Decryption
Usage Examples
Encrypt a Message
Encrypt a simple text message using AES-256-GCM. The strongest mode with built-in authentication.
Protect Sensitive Data
Encrypt configuration data like API keys, database URLs and tokens before storing or sharing them.
Legacy Compatibility
Encrypt using AES-CBC mode with 128-bit key for compatibility with older systems and libraries.
Features
AES-GCM & AES-CBC
Support for AES-GCM (authenticated encryption) and AES-CBC modes with 128 or 256-bit keys
PBKDF2 Key Derivation
Password-based key derivation using PBKDF2 with 100,000 iterations and SHA-256 for maximum security
Portable Output
Encrypted output includes salt, IV and mode info in a single Base64 string for easy sharing
Privacy First
All processing happens locally in your browser using Web Crypto API, no data sent to servers
How to Use?
Enter Text & Password
Type or paste the text you want to encrypt and enter a strong password. Choose encryption mode and key size.
Encrypt
Click Encrypt to generate the encrypted Base64 output. Copy it for storage or sharing.
Decrypt
Switch to the Decrypt tab, paste the encrypted text and enter the same password to decrypt.
Frequently Asked Questions
What is AES Encryption Tool?
Need to send someone a password securely? Email is not safe, and neither is Slack. AES encryption lets you turn any text into ciphertext that only someone with the right password can read back. This tool runs AES-GCM or AES-CBC with 128 or 256-bit keys, derives the key from your password using PBKDF2 (100k iterations), and does everything in your browser via Web Crypto API. No data ever hits a server.
Why Developers Trust This Tool
The output is a single Base64 string containing the salt, IV, and ciphertext. You can paste it in a chat, save it to a config file, or store it in a database. The recipient just needs the password. GCM mode catches any tampering, PBKDF2 makes dictionary attacks impractical, and your plaintext never leaves your machine.