CyberGlossary

Cryptography

Decryption

Definition

The reverse cryptographic operation that converts ciphertext back into its original plaintext using the appropriate algorithm and key.

Decryption is the process of recovering plaintext from ciphertext by applying the inverse of an encryption algorithm with the correct cryptographic key. In symmetric schemes the same secret key is used; in asymmetric schemes the recipient's private key reverses what was encrypted under their public key. Authenticated encryption modes such as AES-GCM also verify integrity during decryption and fail if the ciphertext or associated data has been tampered with. Unauthorized decryption — for example via leaked keys, weak algorithms (DES, RC4), or cryptanalysis — defeats confidentiality entirely. Strong key management, side-channel-resistant implementations, and modern algorithms (AES-256-GCM, ChaCha20-Poly1305) keep decryption available only to legitimate holders of the key.

Examples

  • A web browser decrypts TLS records to display the page content.
  • A user enters their FileVault passphrase, which decrypts the disk encryption key.

Related terms