Combination of more than one crypto algorithm - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T17:10:42Z http://stackoverflow.com/feeds/question/120131 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/120131/combination-of-more-than-one-crypto-algorithm 4 Combination of more than one crypto algorithm Miro Kropacek 2008-09-23T09:54:01Z 2008-09-28T14:05:48Z <p>Hello everybody,</p> <p>I'm considering the following: I have some data stream which I'd like to protect as secure as possible -- does it make any sense to apply let's say AES with some IV, then Blowfish with some IV and finally again AES with some IV?</p> <p>The encryption / decryption process will be hidden (even protected against debugging) so it wont be easy to guess which crypto method and what IVs were used (however, I'm aware of the fact the power of this crypto chain can't be depend on this fact since every protection against debugging is breakable after some time).</p> <p>I have computer power for this (that amount of data isn't that big) so the question only is if it's worth of implementation. For example, TripleDES worked very similarly, using three IVs and encrypt/decrypt/encrypt scheme so it probably isn't total nonsense. Another question is how much I decrease the security when I use the same IV for 1st and 3rd part or even the same IV for all three parts?</p> <p>I welcome any hints on this subject :)</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/120131/combination-of-more-than-one-crypto-algorithm/120145#120145 1 Answer by Damien_The_Unbeliever for Combination of more than one crypto algorithm Damien_The_Unbeliever 2008-09-23T09:58:39Z 2008-09-23T09:58:39Z <p>Who are you trying to protect your data from? Your brother, your competitor, your goverment, or the aliens?</p> <p>Each of these has different levels at which you could consider the data to be "as secure as possible", within a meaningful budget (of time/cash)</p> http://stackoverflow.com/questions/120131/combination-of-more-than-one-crypto-algorithm/120146#120146 10 Answer by Hank Gay for Combination of more than one crypto algorithm Hank Gay 2008-09-23T09:58:51Z 2008-09-23T10:32:27Z <p>I'm not sure about this specific combination, but it's generally a bad idea to mix things like this unless that specific combination has been extensively researched. It's possible the mathematical transformations would actually counteract one another and the end result would be easier to hack. A single pass of either AES or Blowfish should be more than sufficient.</p> <p>UPDATE: From my comment below…</p> <p>Using TripleDES as an example: think of how much time and effort from the world's best cryptographers went into creating that combination (note that DoubleDES had a vulnerability), and the best they could do is 112 bits of security despite 192 bits of key.</p> <p>UPDATE 2: I have to agree with Diomidis that AES is <em>extremely</em> unlikely to be the weak link in your system. Virtually every other aspect of your system is more likely to be compromised than AES.</p> <p>UPDATE 3: Depending on what you're doing with the stream, you may want to just use <a href="http://en.wikipedia.org/wiki/Secure_Sockets_Layer" rel="nofollow">TLS</a> (the successor to SSL). I recommend <a href="http://www.schneier.com/book-practical.html" rel="nofollow">Practical Cryptography</a> for more details—it does a pretty good job of addressing a lot of the concerns you'll need to address. Among other things, it discusses <a href="http://en.wikipedia.org/wiki/Stream_cipher" rel="nofollow">stream ciphers</a>, which may or may not be more appropriate than AES (since AES is a <a href="http://en.wikipedia.org/wiki/Block_cipher" rel="nofollow">block cipher</a> and you specifically mentioned that you had a data stream to encrypt).</p> http://stackoverflow.com/questions/120131/combination-of-more-than-one-crypto-algorithm/120151#120151 0 Answer by Damien_The_Unbeliever for Combination of more than one crypto algorithm Damien_The_Unbeliever 2008-09-23T10:00:28Z 2008-09-23T10:00:28Z <p>Also, don't waste time obfuscating the algorithm - apply Kirchoff's principle, and remember that AES, in and of itself, is used (and acknowledged to be used) in a large number of places where the data needs to be "secure".</p> http://stackoverflow.com/questions/120131/combination-of-more-than-one-crypto-algorithm/120162#120162 3 Answer by Diomidis Spinellis for Combination of more than one crypto algorithm Diomidis Spinellis 2008-09-23T10:03:15Z 2008-09-23T10:03:15Z <p>I don't think you have anything to loose by applying one encryption algorithm on top of another that is very different from the first one. I would however be wary of running a second round of the same algorithm on top of the first one, even if you've run another one in-between. The interaction between the two runs may open a vulnerability.</p> <p>Having said that, I think you're agonizing too much on encryption part. Most exposures of data do not happen by breaking an industry-standard encryption algorithm, like AES, but through other weaknesses in the system. I would suggest to spend more time on looking at key management, the handling of unencrypted data, weaknesses in the algorithm's implementation (the possibility of leaking data or keys), and wider system issues, for instance, what are you doing with data backups.</p> http://stackoverflow.com/questions/120131/combination-of-more-than-one-crypto-algorithm/120167#120167 0 Answer by Miro Kropacek for Combination of more than one crypto algorithm Miro Kropacek 2008-09-23T10:05:36Z 2008-09-23T10:05:36Z <p>Damien: you're right, I should write it more clearly. I'm talking about competitor, it's for commercial use. So there's meaningful budget available but I don't want to implement it without being sure I know why I'm doing it :)</p> <p>Hank: yes, this is what I'm scared of, too. The most supportive source for this idea was mentioned TripleDES. On the other side, when I use one algorithm to encrypt some data, then apply another one, it would be very strange if the 'power' of whole encryption would be lesser than using standalone algorithm. But this doesn't mean it can't be equal... This is the reason why I'm asking for some hint, this isn't my area of knowledge...</p> http://stackoverflow.com/questions/120131/combination-of-more-than-one-crypto-algorithm/120175#120175 0 Answer by Miro Kropacek for Combination of more than one crypto algorithm Miro Kropacek 2008-09-23T10:10:13Z 2008-09-23T10:10:13Z <p>Diomidis: this is basically my point of view but my colleague is trying to convince me it really 'boosts' security. My proposal would be to use stronger encryption key instead of one algorithm after another without any thinking or deep knowledge what I'm doing.</p> http://stackoverflow.com/questions/120131/combination-of-more-than-one-crypto-algorithm/120179#120179 0 Answer by Mendelt for Combination of more than one crypto algorithm Mendelt 2008-09-23T10:11:57Z 2008-09-23T10:11:57Z <p>I wouldn't rely on obscuring the algorithms you're using. This kind of "security by obscurity" doesn't work for long. Decompiling the code is one way of revealing the crypto you're using but usually people don't keep secrets like this for long. That's why we have private/public key crypto in the first place.</p> http://stackoverflow.com/questions/120131/combination-of-more-than-one-crypto-algorithm/120188#120188 0 Answer by Damien_The_Unbeliever for Combination of more than one crypto algorithm Damien_The_Unbeliever 2008-09-23T10:14:11Z 2008-09-23T10:14:11Z <p>@<a href="#120175" rel="nofollow">Miro Kropacek </a>- your colleague is trying to add security through Voodoo. Instead, try to build something simple that you can analyse for flaws - such as just using AES.</p> <p>I'm guessing it was he (she?) who suggested enhancing the security through protection from debugging too...</p> http://stackoverflow.com/questions/120131/combination-of-more-than-one-crypto-algorithm/120241#120241 0 Answer by Nick Johnson for Combination of more than one crypto algorithm Nick Johnson 2008-09-23T10:32:22Z 2008-09-23T10:32:22Z <p>You can't actually make things <em>less</em> secure if you encrypt more than once with distinct IVs and keys, but the gain in security may be much less than you anticipate: In the example of 2DES, the meet-in-the-middle attack means it's only twice as hard to break, rather than squaring the difficulty.</p> <p>In general, though, it's much safer to stick with a single well-known algorithm and increase the key length if you need more security. Leave composing cryptosystems to the experts (and I don't number myself one of them).</p> http://stackoverflow.com/questions/120131/combination-of-more-than-one-crypto-algorithm/120278#120278 4 Answer by Mecki for Combination of more than one crypto algorithm Mecki 2008-09-23T10:44:00Z 2008-09-23T10:44:00Z <p>A hacker will always attack the weakest element in a chain. So it helps little to make a strong element even stronger. Cracking an AES encryption is already impossible with 128 Bit key length. Same goes for Blowfish. Choosing even bigger key lengths make it even harder, but actually 128 Bit has never been cracked up to now (and probably will not within the next 10 or 20 years). So this encryption is probably not the weakest element, thus why making it stronger? It is already strong.</p> <p>Think about what else might be the weakest element? The IV? Actually I wouldn't waste too much time on selecting a great IV or hiding it. The weakest key is usually the enccryption key. E.g. if you are encrypting data stored to disk, but this data needs to be read by your application, your application needs to know the IV and it needs to know the encryption key, hence both of them needs to be <strong>within</strong> the binary. This is actually the weakest element. Even if you take 20 encryption methods and chain them on your data, the IVs and encryption keys of all 20 needs to be in the binary and if a hacker can extract them, the fact that you used 20 instead of 1 encryption method provided zero additional security.</p> <p>Since I still don't know what the whole process is (who encrypts the data, who decrypts the data, where is the data stored, how is it transported, who needs to know the encryption keys, and so on), it's very hard to say what the weakest element really is, but I doubt that AES or Blowfish encryption itself is your weakest element.</p> http://stackoverflow.com/questions/120131/combination-of-more-than-one-crypto-algorithm/126519#126519 0 Answer by AJ for Combination of more than one crypto algorithm AJ 2008-09-24T11:07:31Z 2008-09-24T14:50:27Z <p>Encrypting twice is more secure than encrypting once, even though this may not be clear at first. </p> <p>Intuitively, it appears that encrypting twice with the same algorithm gives no extra protection because an attacker might find a key which decrypts all the way from the final cyphertext back to the plaintext. ... But this is not the case. </p> <p>E.g. I start with plaintext <strong>A</strong> and encrypt with key <strong>K1</strong> it to get <strong>B</strong>. Then I encrypt <strong>B</strong> with key <strong>K2</strong> to get <strong>C</strong>. </p> <p>Intuitively, it seems reasonable to assume that there may well be a key, <strong>K3</strong>, which I could use to encrypt <strong>A</strong> and get <strong>C</strong> directly. If this is the case, then an attacker using brute force would eventually stumble upon <strong>K3</strong> and be able to decrypt <strong>C</strong>, with the result that the extra encryption step has not added any security. </p> <p>However, it is highly unlikely that such a key exists (for any modern encryption scheme). (When I say "highly unlikely" here, I mean what a normal person would express using the word "impossible"). </p> <p>Why?<br /> Consider the keys as functions which provide a mapping from plaintext to cyphertext.<br /> If our keys are all <strong>KL</strong> bits in length, then there are 2^KL such mappings.<br /> However, if I use 2 keys of <strong>KL</strong> bits each, this gives me (2^KL)^2 mappings.<br /> Not all of these can be equivalent to a single-stage encryption. </p> <p>Another advantage of encrypting twice, <em>if 2 different algorithms are used</em>, is that if a vulnerability is found in one of the algorithms, the other algorithm still provides some security. </p> <p>As others have noted, brute forcing the key is typically a last resort. An attacker will often try to break the process at some other point (e.g. using social engineering to discover the passphrase). </p> <p>Another way of increasing security is to simply use a longer key with one encryption algorithm. </p> <p>...Feel free to correct my maths!</p> http://stackoverflow.com/questions/120131/combination-of-more-than-one-crypto-algorithm/127712#127712 0 Answer by Gordon Bell for Combination of more than one crypto algorithm Gordon Bell 2008-09-24T15:03:52Z 2008-09-24T15:03:52Z <p>Yes, it can be beneficial, but probably overkill in most situations. Also, as Hank mentions certain combinations can actually weaken your encryption.</p> <p>TrueCrypt provides a number of combination encryption algorithms like AES-Twofish-Serpent. Of course, there's a performance penalty when using them.</p> http://stackoverflow.com/questions/120131/combination-of-more-than-one-crypto-algorithm/128567#128567 0 Answer by Oli for Combination of more than one crypto algorithm Oli 2008-09-24T17:36:30Z 2008-09-24T17:36:30Z <p>Changing the algorithm is not improving the quality (except you expect an algorithm to be broken), it's only about the key/block length and some advantage in obfuscation. Doing it several times is interesting, since even if the first key leaked, the resulting data is not distinguishable from random data. There are block sizes that are processed better on a given platform (eg. register size).</p> <p>Attacking quality encryption algorithms only works by brute force and thus depending on the computing power you can spend on. This means eventually you only can increase the probable average time somebody needs to decrypt it.</p> <p>If the data is of <em>real</em> value, they'd better not attack the data but the key holder...</p> http://stackoverflow.com/questions/120131/combination-of-more-than-one-crypto-algorithm/145901#145901 0 Answer by Phil for Combination of more than one crypto algorithm Phil 2008-09-28T14:05:48Z 2008-09-28T14:05:48Z <p>I agree with what has been said above. Multiple stages of encryption won't buy you much. If you are using a 'secure' algorithm then it is practically impossible to break. Using AES in some standard streaming mode. See <a href="http://csrc.nist.gov/groups/ST/toolkit/index.html" rel="nofollow">http://csrc.nist.gov/groups/ST/toolkit/index.html</a> for accepted ciphers and modes. Anything recommended on that site should be sufficiently secure when used properly. If you want to be extra secure, use AES 256, although 128 should still be sufficient anyway. The greatest risks are not attacks against the algorithm itself, but rather attacks against key management, or side channel attacks (which may or may not be a risk depending on the application and usage). If you're application is vulnerable to key management attacks or to side channel attacks then it really doesn't matter how many levels of encryption you apply. This is where I would focus your efforts.</p>