I understand it is initialization vector, but what is it ? Is it appended at the beginning of each packet as a key piece? Is it used to encrypt the entire packet? What does IV do exactly?

link|improve this question
right but I didn't quite understand it :S – Howdy_McGee Dec 5 '11 at 3:43
feedback

1 Answer

The IV is included in each packet and is different in each packet. It is used to generate a distinct "packet key" for each packet, the packet key consisting of the fixed master key and the initialization vector.

link|improve this answer
so it doesn't really encrypt as much as supply necessary information? – Howdy_McGee Dec 5 '11 at 3:46
It's sent in the clear over the wire, but it does encrypt because it is part of the key. The point is to encrypt each packet with a different key. – David Schwartz Dec 5 '11 at 4:01
feedback

Your Answer

 
or
required, but never shown

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