A weak cryptoloop implementation in Linux?
A weak cryptoloop implementation in Linux?
Posted Oct 5, 2005 18:05 UTC (Wed) by kokopelli (guest, #11341)In reply to: A weak cryptoloop implementation in Linux? by Ross
Parent article: A weak cryptoloop implementation in Linux?
You always have to read and write a complete disk page. Each page should be handled independently for various reasons. The only information that should "leak" into the encryption process is the absolute or relative block offset - as others mentioned it's used to set up a different 'initialization vector' for each page. (Global or per-page salt would also end up in the IV.)
Block ciphers will typically encrypt 8 to 32 bytes as a unit. If they're run independently you get a 'codebook' cipher - vulnerable to known-text attack anywhere within the disk page. If they're chained you're only vulnerable for the first cipher block of each page. There's no real cost to chaining as long as it doesn't extend beyond the disk page.