AES Encryptor / Decryptor
Encrypt or decrypt text using AES-128/192/256. All processing happens in your browser — your data never leaves your device.
Frequently Asked Questions
1. Is AES encryption secure?
AES (Advanced Encryption Standard) is a NIST-approved symmetric encryption standard used worldwide. AES-256 is considered highly secure for government and commercial use.
2. Is my data sent to your server?
No. All encryption and decryption is performed locally in your browser using the Web Crypto API. Your data never leaves your device.
3. What is the difference between CBC and ECB mode?
CBC (Cipher Block Chaining) uses an IV and chains blocks together, making it more secure. ECB (Electronic Codebook) encrypts each block independently and is not recommended for sensitive data. CBC is the default and recommended mode.
4. How do I decrypt my data later?
You need three things: the encrypted text, the same secret key, and (for CBC mode) the IV that was used during encryption. The IV is shown in the encryption output — save it along with the ciphertext.