AES-256-GCM
EncryptionAES has been the worldwide standard for symmetric encryption since 2001 – used by banks, governments and practically every HTTPS connection, never practically broken in more than twenty years of public analysis. “256” is the key length in bits, the strongest variant. GCM is the mode of operation and does two things at once: it encrypts, and it computes a 16-byte authenticity seal (the authentication tag) over the ciphertext. On decryption that seal is checked first: if even a single bit is off – wrong key, wrong password, tampered data – decryption fails cleanly instead of producing garbage that looks like a message.
ct = AES-256-GCM(key, iv, plaintext)