vote up 4 vote down star
4

Which of them are preferred in which circumstances?

I'd like to see the list of evaluation crtieria for the various modes, and maybe a discussion of the applicability of each criterion.

For example, I think one of the criteria is "size of the code" for encryption and decryption, which is important for micro-code embedded systems, like 802.11 network adapters. IF the code required to implement CBC is much smaller than that required for CTR (I don't know this is true, it's just an example), then I could understand why the mode with the smaller code would be preferred. But if I am writing an app that runs on a server, and the AES library I am using implements both CBC and CTR anyway, then this criterion is irrelevant.

See what I mean by "list of evaluation criteria and applicability of each criterion" ??

This isn't really programming related but it is algorithm related.

flag

4 Answers

vote up 8 vote down check

-ECB should not be used if encrypting more than one block of data with the same key.

-CBC, OFB and CFB are identical, however OFB/CFB is better because you only need encryption and not decryption, which can save code space.

-CTR is used if you want good parrallelisation (ie. speed), instead of CBC/OFB/CFB.

-XTS mode is the most common if you are encoding a random accessable data (like a harddisk or RAM).

-OCB is by far the best mode, as it allows encryption and authentication in a single pass. However there are patents on it in USA.

The only thing you reall have to know is that ECB is not to be used unless you are only encryting 1 block. XTS should be used if you are encrypting ramdomly accessed data and not a stream.

-You should ALWAYS use unique IV's everytime you encrypt, and they should be random. If you cannot garantee they are random use OCB as it only requires a nounce, not an IV, and there is a distinct difference. A nounce does not drop security if people can guess the next one, an IV can cause this program.

link|flag
Why is CTR more amenable to parallization? – Cheeso Sep 18 at 1:38
vote up 3 vote down

Have you start by reading the information on this on Wikipedia - Block cipher modes of operation? Then follow the reference link on Wikipedia to NIST: Recommendation for Block Cipher Modes of Operation.

link|flag
vote up 3 vote down
  1. Anything but ECB.
  2. If using CTR, it is imperative that you use a different IV for each message, otherwise you end up with the attacker being able to take two ciphertexts and deriving a combined unencrypted plaintext. The reason is that CTR mode essentially turns a block cipher into a stream cipher, and the first rule of stream ciphers is to never use the same Key+IV twice.
  3. There really isn't much difference in how difficult the modes are to implement. Some modes only require the block cipher to operate in the encrypting direction. However, most block ciphers, including AES, don't take much more code to implement decryption.
  4. For all cipher modes, it is important to use different IVs for each message if your messages could be identical in the first several bytes, and you don't want an attacker knowing this.
link|flag
To support your Point 1 (+1 for that btw): codinghorror.com/blog/archives/… – Michael Stum Aug 3 at 5:55
You shouldn't start CTR with a random number, since that has a small-but-increasing chance of colliding with part of a previous message. Instead monotonically increment it (this may mean remembering where you are up to in persistent storage), and re-key if (when) you run out of counter. – caf Aug 3 at 11:27
@Theran - point 2 - a different random number for each message? No, I think that is not correct. I am under the impression that starting the counter always at zero is just fine. @caf, I think when Theran says "message" he does not mean "block". Of course the counter gets incremented for each block of a particular message that run through the cipher. What Theran seems to be saying is that each message must start with a different initial value for the counter. And I think this is not correct. – Cheeso Aug 3 at 11:51
re: point 3 - I have read papers that say, for example, CTR mode is smaller to implement because the decrypt is the same transform as encrypt. Therefore half the code. But as I say, not relevant on a server-class machine. – Cheeso Aug 3 at 11:53
Yes, I misspoke. It's the IV/nonce that should change for CTR mode, but that gets combined with the counter before encrypting, so I tend to just think of it as a random starting point for the counter. As far as only having to use the cipher in the encrypting direction saving space, for many ciphers you only have to reverse the subkeys to decrypt. AES is a bit bulky for decrypting, but it's not like you can implement it on a uC with 128 bytes of RAM anyways. The subkeys take more RAM than that! – Theran Aug 4 at 3:50
vote up 1 vote down

I know one aspect: Although CBC gives better security by changing the IV for each block, it's not applicable to randomly accessed encrypted content (like an encrypted hard disk).

So, use CBC (and the other sequential modes) for sequential streams and ECB for random access.

link|flag
Ah, right, of course. The CBC XORs the prior ciphertext block with the plaintext block before encryption. The first block uses the IV. So to decrypt any block, you have to have successfully decrypted all prior blocks. ok, that's a good insight. – Cheeso Aug 3 at 11:36
1  
No, you only have to have access to the prior ciphertext, which doesn't require decrypting any previous blocks. – caf Aug 3 at 13:57
Ah, well that means CBC is just fine with random access, doesn't it? – Cheeso Sep 18 at 1:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.