microZEUS
The whole stack, hand-drawn.

◄ Wiki / Crypto

AES / AES-GCM

The AES cipher, often used in GCM mode to encrypt and authenticate at once.

AES is the underlying block cipher; AES-GCM wraps it in Galois/Counter Mode so the same operation both encrypts data and produces an authentication tag. A constant-time AES implementation resists timing attacks by never branching or indexing on secret data. Together they give confidentiality and tamper-detection in one pass.

See also

  • AESThe standard symmetric cipher used to encrypt data with a shared secret key.
  • AES-GCMAES run in a mode that encrypts data and detects tampering in a single step.
  • AEADEncryption that both hides data and proves it wasn't tampered with.

Referenced by

AES · AES-GCM