AES Encrypt
Encrypt text using AES-256-GCM — industry-standard authenticated encryption with a password or key.
About AES Encryption
AES (Advanced Encryption Standard) is the most widely used symmetric encryption algorithm in the world, adopted by the US government and used in TLS, disk encryption, file encryption, and secure messaging. AES-256 uses a 256-bit key and is considered quantum-resistant for the foreseeable future.
This tool uses AES-256-GCM (Galois/Counter Mode), which is an authenticated encryption mode that provides both confidentiality (the data is encrypted) and integrity (tampering with the ciphertext is detectable). The password is derived into a 256-bit key using PBKDF2-SHA256 with a random salt and 100,000 iterations. A random 12-byte IV (initialization vector) is generated for each encryption — never reused. The salt, IV, and ciphertext are combined and Base64-encoded for easy storage and transmission.