Transferring cryptographic initialization vectors - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T22:23:34Z http://stackoverflow.com/feeds/question/1025720 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1025720/transferring-cryptographic-initialization-vectors 2 Transferring cryptographic initialization vectors ejm 2009-06-22T06:30:06Z 2009-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#1025879 4 Answer by AviD for Transferring cryptographic initialization vectors AviD 2009-06-22T07:25:57Z 2009-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>