Transferring cryptographic initialization vectors - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T22:23:34Zhttp://stackoverflow.com/feeds/question/1025720http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1025720/transferring-cryptographic-initialization-vectors2Transferring cryptographic initialization vectorsejm2009-06-22T06:30:06Z2009-06-22T07:25:57Z
<p>I want to know the best way of transferring a cryptographic initialization vector (IV) from the place where my data is encrypted to the place where my data is decrypted.</p>
<p>In other words, the IV should be randomly generated every time you encrypt a message (right?), so there needs to be some way of finding the IV when you decrypt.</p>
<p>I have heard of people simply concatenating the IV (in plain text) to the encrypted data. Is there any security risk with this?</p>
http://stackoverflow.com/questions/1025720/transferring-cryptographic-initialization-vectors/1025879#10258794Answer by AviD for Transferring cryptographic initialization vectorsAviD2009-06-22T07:25:57Z2009-06-22T07:25:57Z<p>The IV does not need to be kept secret, as the only secret data is the key (by definition).<br />
As long as the IV is random, go right ahead and transmit it any way you like - concatenating it with the encrypted data is just fine. </p>
<p>(Of course, make sure you ARE protecting the <em>integrity</em> of the IV data, otherwise it won't work....)</p>