What is encryption IV for?

1k Views Asked by At

What is the IV in encryption used for?

Is this a valid example for encryption with IV? (Pseudocode)

Encryption->xor data with key, prepend IV to output Decryption->just remove IV and xor the rest with same key

1

There are 1 best solutions below

0
On

The IV (Initialization Vector) is designed to be random for each message so that two identical messages encrypted with the same key are not the same thus leaking information. The IV does not need to be secret so it can just prefix the encrypted message.

The point is that the IV causes the entire encrypted message to be different, adding it to the message is just one common way to make it available for decryption.

Consider the case where Alice sends Bob a message every day of where they will meet, either the mall or the post office. With the same key and IV eavesdropping Eve after noticing where they meet but not knowing which location can tell just be looking at the encrypted message without need to decrypt it. It could be "attack at dawn" or "attack at dusk".

The key can be pre-shared once and reused securely for many messages just by using a different random IV for each message.