AES Encryption & Decryption
Encrypt and decrypt text using AES (Advanced Encryption Standard). Supports various key sizes and block modes.
Text Data
Result Output
sponsor AD
300×250
Ad Space
💡 Quick Tips
- AES is a symmetric key algorithm, meaning the same key is used for both encryption and decryption.
- Encryption modes like CBC or GCM use an Initialization Vector (IV).
- CodeToolTip uses AES-256 by default (CryptoJS default settings).
- Always keep your secret keys secure and never share them publicly.