<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>
<channel>
	<title>Comments on: What Is DES and 3DES?</title>
	<atom:link href="http://azio.org/2006/10/19/what-is-des-and-3des/feed/" rel="self" type="application/rss+xml" />
	<link>http://azio.org/2006/10/19/what-is-des-and-3des/</link>
	<description>return of the men in black</description>
	<pubDate>Thu, 11 Mar 2010 15:52:57 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Yahoouj</title>
		<link>http://azio.org/2006/10/19/what-is-des-and-3des/comment-page-1/#comment-44317</link>
		<dc:creator>Yahoouj</dc:creator>
		<pubDate>Tue, 23 Feb 2010 07:18:43 +0000</pubDate>
		<guid isPermaLink="false">http://azio.org/2006/10/19/what-is-des-and-3des/#comment-44317</guid>
		<description>Really good work about this website was done. Keep trying more - thanks!</description>
		<content:encoded><![CDATA[<p>Really good work about this website was done. Keep trying more - thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: What Is DES and 3DES? &#171; Security News</title>
		<link>http://azio.org/2006/10/19/what-is-des-and-3des/comment-page-1/#comment-6997</link>
		<dc:creator>What Is DES and 3DES? &#171; Security News</dc:creator>
		<pubDate>Tue, 16 Oct 2007 15:50:56 +0000</pubDate>
		<guid isPermaLink="false">http://azio.org/2006/10/19/what-is-des-and-3des/#comment-6997</guid>
		<description>[...] read more &#124; digg story [...]</description>
		<content:encoded><![CDATA[<p>[...] read more | digg story [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Keith</title>
		<link>http://azio.org/2006/10/19/what-is-des-and-3des/comment-page-1/#comment-75</link>
		<dc:creator>Keith</dc:creator>
		<pubDate>Fri, 20 Oct 2006 12:09:14 +0000</pubDate>
		<guid isPermaLink="false">http://azio.org/2006/10/19/what-is-des-and-3des/#comment-75</guid>
		<description>There are also methods such as &lt;a href="http://www.neohide.com" rel="nofollow"&gt;BlowFish&lt;/a&gt;. In whatsoever, it is always useful to use 3DES rather than DES.</description>
		<content:encoded><![CDATA[<p>There are also methods such as <a href="http://www.neohide.com" rel="nofollow">BlowFish</a>. In whatsoever, it is always useful to use 3DES rather than DES.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: azio</title>
		<link>http://azio.org/2006/10/19/what-is-des-and-3des/comment-page-1/#comment-69</link>
		<dc:creator>azio</dc:creator>
		<pubDate>Thu, 19 Oct 2006 22:56:39 +0000</pubDate>
		<guid isPermaLink="false">http://azio.org/2006/10/19/what-is-des-and-3des/#comment-69</guid>
		<description>Hey Saqlib,
                    Thanks for your response on my blog, I thought I'd reply here and on my blog, Indeed you are correct. I think that what you mean is that the 3TDES has a much likelier chance of collision or success from linear cryptanalysis , and could, in the right circumstances be as insecure as DES, perhaps. 

I would add these details to my blog but I think they stand out quite well in your comment!

Best Wishes,

Azio</description>
		<content:encoded><![CDATA[<p>Hey Saqlib,<br />
                    Thanks for your response on my blog, I thought I&#8217;d reply here and on my blog, Indeed you are correct. I think that what you mean is that the 3TDES has a much likelier chance of collision or success from linear cryptanalysis , and could, in the right circumstances be as insecure as DES, perhaps. </p>
<p>I would add these details to my blog but I think they stand out quite well in your comment!</p>
<p>Best Wishes,</p>
<p>Azio</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: saqib ali</title>
		<link>http://azio.org/2006/10/19/what-is-des-and-3des/comment-page-1/#comment-68</link>
		<dc:creator>saqib ali</dc:creator>
		<pubDate>Thu, 19 Oct 2006 21:13:28 +0000</pubDate>
		<guid isPermaLink="false">http://azio.org/2006/10/19/what-is-des-and-3des/#comment-68</guid>
		<description>very good. but why does 3TDES (3 Distinct Keys) has a effective key-length of 112-bit ???

Understanding this is important to understanding why even 3TDES is considered insecure, theoretically

Here is the explanation.
----------------
So, triple DES involves three keys, K1, K2, K3. Write single-DES encryption with a key K and plaintext block x as E(K, x), and decryption as D(K, x). Triple DES encryption is E(K3, D(K2, E(K1, x))).

Suppose you're given a plaintext block x and corresponding ciphertext y. For each possible K3, compute D(K3, y), and store the result in a table. This takes about 2^56 work, and uses 2^56 blocks of memory.

Now, for each pair K1, K2, compute D(K2, E(K1, x)). If this matches one of the values in the table, find the corresponding K3, and test the whole key against some other plaintext/ciphertext pairs. Continue until you're done. This step takes no extra memory and requires 2^112 time.
--------------------

saqib
http://www.full-disk-encryption.net</description>
		<content:encoded><![CDATA[<p>very good. but why does 3TDES (3 Distinct Keys) has a effective key-length of 112-bit ???</p>
<p>Understanding this is important to understanding why even 3TDES is considered insecure, theoretically</p>
<p>Here is the explanation.<br />
&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
So, triple DES involves three keys, K1, K2, K3. Write single-DES encryption with a key K and plaintext block x as E(K, x), and decryption as D(K, x). Triple DES encryption is E(K3, D(K2, E(K1, x))).</p>
<p>Suppose you&#8217;re given a plaintext block x and corresponding ciphertext y. For each possible K3, compute D(K3, y), and store the result in a table. This takes about 2^56 work, and uses 2^56 blocks of memory.</p>
<p>Now, for each pair K1, K2, compute D(K2, E(K1, x)). If this matches one of the values in the table, find the corresponding K3, and test the whole key against some other plaintext/ciphertext pairs. Continue until you&#8217;re done. This step takes no extra memory and requires 2^112 time.<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>saqib<br />
<a href="http://www.full-disk-encryption.net" rel="nofollow">http://www.full-disk-encryption.net</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Azio&#8217;s Computer Log &#187; About: Linear CryptAnalysis</title>
		<link>http://azio.org/2006/10/19/what-is-des-and-3des/comment-page-1/#comment-66</link>
		<dc:creator>Azio&#8217;s Computer Log &#187; About: Linear CryptAnalysis</dc:creator>
		<pubDate>Thu, 19 Oct 2006 19:25:49 +0000</pubDate>
		<guid isPermaLink="false">http://azio.org/2006/10/19/what-is-des-and-3des/#comment-66</guid>
		<description>[...] History  Mitsuru Matsui discovoered linear cryptanalysis methodology , who first applied the technique to the FEAL cipher (Matsui and Yamahgishi) in 1992. Matsui published an attack on the DES algorotihm also, as mentioned in a previous azio.org article:what is DES and 3DES. [...]</description>
		<content:encoded><![CDATA[<p>[...] History  Mitsuru Matsui discovoered linear cryptanalysis methodology , who first applied the technique to the FEAL cipher (Matsui and Yamahgishi) in 1992. Matsui published an attack on the DES algorotihm also, as mentioned in a previous azio.org article:what is DES and 3DES. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
