Block Cipher Modes Flashcards

1
Q

ECB (electronic code book)

A

Each plaintext block encrypts with same key

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

CBC (Cipher Block Chain)

A

First Block uses IV XOR’d with the key
All other blocks are XOR’d with previous block

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

CTR (counter) stream

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

GCM (Galois counter mode)

A

Encryption and authentication Minimum latency
Used in Wi-Fi and TLS
(Used by WPA3)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

PCBC (propagating CBC)

A

Used as a federal standard

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

OFB (output feedback) stream

A

Used for streaming.
(Often used for Wi-Fi and secure websites)
AES block cipher similar to CFB mode.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

CFB (cipher feedback)

A

AES block cipher similar to CBC in that it uses the cipher of the previous block.
Meant for streaming and doesn’t require padding.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly