The iv used in AES-CTR can be stored in clear?

3

I want to use the AES cipher in counter mode and I'm not sure if I can keep the iv (nonce + counter) clear.

    
asked by anonymous 20.03.2014 / 17:52

1 answer

1

A Wikipedia article says (the translation is mine):

  

A boot vector has different security requirements than a key, so the IV does not need to be secret. However, in most cases, it is important that the boot vector is never reused with the same key.

You do not need to keep iv secret, but you have to make sure it's unique.

    
01.05.2014 / 10:23