Multiple choice technology security

The two methods of encrypting data are

  1. Substitution and transposition

  2. Block and stream

  3. Symmetric and asymmetric

  4. DES and AES

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The two fundamental methods of encrypting data are based on how the encryption algorithm operates: block ciphers (which encrypt fixed-size blocks of data) and stream ciphers (which encrypt data as a continuous stream, bit by bit or byte by byte). Symmetric/asymmetric refers to key management, not the encryption method itself.

AI explanation

Symmetric encryption algorithms process data either a fixed-size chunk at a time (block ciphers, like AES operating on 128-bit blocks) or one bit/byte at a time as a continuous stream (stream ciphers, like RC4), making block and stream the two fundamental modes of operation for encrypting data. Symmetric vs. asymmetric describes key management (shared vs. public/private keys), a different axis of classification, and substitution/transposition describes classical, pre-computer cipher techniques.