Block Cipher Modes Flashcards

1
Q

How does electronic cookbook mode work?

A

ECB splits the plaintext into blocks and runs the block cipher on each block.

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

Why is ECB not considered secure?

A

ECB gives information about the plaintext away. As the same message with the same key will always produce the same ciphertext.

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

How does cipher block chaining mode work?

A

CBC adds a random initialisation vector (IV) that during encryption the first block of the plaintext is XOR’d with before running the block encryption. The next block is XOR’d with this ciphertext before running the block encryption and so on.

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

What is the problem with CBC mode?

A

Encryption of each block requires the result of the previous block, therefore it can not be executed in parallel.

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

How does counter mode work?

A

In counter mode a random 32 bit or 64 bit nonce is generated. For each block, the nonce is combined with a counter (if the nonce is 32 bit it is appended, if the nonce is 64 bit it is added), which is the index of the block (starting at 0). This is then encrypted, the output is then XOR’d with the plaintext to get the ciphertext.

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

What is the problem with CTR?

A

It causes the block cipher to lose its property of diffusion. As a single change in the plaintext will only cause a single bit to change in the ciphertext.

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