vote up 0 vote down star

Hi,

What is DES-X?

And

DES-X and DES, are they backwards compatible?

flag

45% accept rate
What do you mean by "backwards compatible"? The term is rarely used in cryptography. No, you cannot decrypt anything encrypted with DES using DES-X, if that's what you're asking... – Zarel Jul 12 at 16:29
Though, if I understand it correctly, by definition DES-X can produce the same output as DES if the 56-bit key k is identical in each case and the additional 64-bit keys k1, k2 in DES-X are set to all zeroes (e.g. see Kilian and Rogaways 1997 paper on protecting DES against exhaustive key searches). Using all-zero additional keys in DES-X rather defeats the point, though. – mas Jul 12 at 16:50

4 Answers

vote up 3 vote down check

Well, DES-X is a variant of the DES block cipher (as I'm sure you already knew).

The reason for the introduction of the DES-X was an attempt to increase the security of the original DES algorithm (which was limited to a 56bit key). The proposed solution with DEX-X was to use two more 64-bit keys which would be applied to make it harder for an attacker to guess the key of the DES algorithm. Basically, the first additional key is XORed to the plain text which is then encrypted with DES. The second additional key is XORed to the resulting cypher.

However, as far the backwards compatibility.. I'm not sure what you mean by that? If you're asking if you can use DES to decrypt DES-X messages then NO (it the strict sense). If you're asking whether a DES-X implementation could be configured to encrypt/decrypt DES messages then the answer is YES.

Here's an example:

    DES(msg) = CYPHER
    DES-X(msg) = K2 X DES(K1 x msg) = CYPER-X

If you choose K2 and K1 to be the all 0 then:

    DES-x(msg) = K2 x DES(K1 x msg) [where K1 = 0, K2 =0] = DES(msg)

It should be pointed out that what I mean by making K1 and K2 0 is actually choosing a key which is 64 bits of 0 = {0,0,0,0,0...0} (64 times). Such a key does not modify the plaintext of the cypher at all when the XOR operation is applied.

link|flag
vote up 0 vote down

DES and DES-X are both block ciphers. See http://en.wikipedia.org/wiki/DES-X for more details. In short, DES-X adds key whitening.

link|flag
vote up 0 vote down

Here's the wikipedia article on DES-X. DES-X increases the key size by appending XOR'd versions of the key before and after the encryption.

link|flag
vote up 0 vote down

The summary of this paper says that DES-X is "compatible." However, I'm not sure if that includes backwards-compatibility.

http://www.cs.ucdavis.edu/~rogaway/papers/cryptobytes.ps

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.