Block Cipher Modes Flashcards
ECB (electronic code book)
Each plaintext block encrypts with same key
CBC (Cipher Block Chain)
First Block uses IV XOR’d with the key
All other blocks are XOR’d with previous block
CTR (counter) stream
Acts like a stream cipher
The block is a blank counter
Key is XOR’d with plaintext to create ciphertext.
Next block increases the counter by 1
GCM (Galois counter mode)
Encryption and authentication Minimum latency
Used in Wi-Fi and TLS
(Used by WPA3)
PCBC (propagating CBC)
Used as a federal standard
OFB (output feedback) stream
Used for streaming.
(Often used for Wi-Fi and secure websites)
AES block cipher similar to CFB mode.
CFB (cipher feedback)
AES block cipher similar to CBC in that it uses the cipher of the previous block.
Meant for streaming and doesn’t require padding.