How AES Encrypt / Decrypt works
AES Encrypt / Decrypt uses the browser's native WebCrypto API to encrypt and decrypt text with AES-256-GCM, one of the strongest symmetric encryption algorithms available. You provide a passphrase; the tool derives a 256-bit AES key from it using PBKDF2 with a random salt, then encrypts your text with a random initialization vector. Everything runs on your device using SubtleCrypto; your passphrase and plaintext never leave the browser tab.
One critical point: if you lose the passphrase, the encrypted text is unrecoverable. AES-256-GCM with a properly derived key provides no backdoor, no recovery mechanism, and no master key. Store your passphrase in a password manager alongside the encrypted output if you need to recover it later.