The DES Algorithm Illustrated: (Email Reply)
The DES Algorithm Illustrated: (Email Reply)
The DES (Data Encryption Standard) algorithm is the most widely used
encryption algorithm in the world. For many years, and among many
people, "secret code making" and DES have been synonymous. And
despite the recent coup by the Electronic Frontier Foundation in creating a
$220,000 machine to crack DES-encrypted messages, DES will live on in
government and banking for years to come through a life- extending
version called "triple-DES."
How does DES work? This article explains the various steps involved in
DES-encryption, illustrating each step by means of a simple example.
Since the creation of DES, many other algorithms (recipes for changing
data) have emerged which are based on design principles similar to DES.
Once you understand the basic transformations that take place in DES, you
will find it easy to follow the steps involved in these more recent
algorithms.
But first a bit of history of how DES came about is appropriate, as well as
a look toward the future.
On May 15, 1973, during the reign of Richard Nixon, the National Bureau
of Standards (NBS) published a notice in the Federal Register soliciting
proposals for cryptographic algorithms to protect data during transmission
and storage. The notice explained why encryption was an important issue.
Over the last decade, there has been an accelerating increase in the
accumulations and communication of digital data by government, industry
and by other organizations in the private sector. The contents of these
communicated and stored data often have very significant value and/or
sensitivity. It is now common to find data transmissions which constitute
funds transfers of several million dollars, purchase or sale of securities,
warrants for arrests or arrest and conviction records being communicated
between law enforcement agencies, airline reservations and ticketing
representing investment and value both to the airline and passengers, and
health and patient care records transmitted among physicians and
treatment centers.
NBS waited for the responses to come in. It received none until August 6,
1974, three days before Nixon's resignation, when IBM submitted a
candidate that it had developed internally under the name LUCIFER. After
evaluating the algorithm with the help of the National Security Agency
(NSA), the NBS adopted a modification of the LUCIFER algorithm as the
new Data Encryption Standard (DES) on July 15, 1977.
This example is neat and orderly because our plaintext was exactly 64 bits
long. The same would be true if the plaintext happened to be a multiple of
64 bits. But most messages will not fall into this category. They will not
be an exact multiple of 64 bits (that is, an exact multiple of 16
hexadecimal numbers).
For example, take the message "Your lips are smoother than vaseline".
This plaintext message is 38 bytes (76 hexadecimal digits) long. So this
message must be padded with some extra bytes at the tail end for the
encryption. Once the encrypted message has been decrypted, these extra
bytes are thrown away. There are, of course, different padding schemes--
different ways to add extra bytes. Here we will just add 0s at the end, so
that the total message is a multiple of 8 bytes (or 16 hexadecimal digits, or
64 bits).
The plaintext message "Your lips are smoother than vaseline" is, in
hexadecimal,
(Note here that the first 72 hexadecimal digits represent the English
message, while "0D" is hexadecimal for Carriage Return, and "0A" is
hexadecimal for Line Feed, showing that the message file has terminated.)
We then pad this message with some 0s on the end, to get a total of 80
hexadecimal digits:
This is the secret code that can be transmitted or stored. Decrypting the
ciphertext restores the original message "Your lips are smoother than
vaseline". (Think how much better off Bill Clinton would be today, if
Monica Lewinsky had used encryption on her Pentagon computer!)
M = 0000 0001 0010 0011 0100 0101 0110 0111 1000 1001 1010 1011
1100 1101 1110 1111
L = 0000 0001 0010 0011 0100 0101 0110 0111
R = 1000 1001 1010 1011 1100 1101 1110 1111
The first bit of M is "0". The last bit is "1". We read from left to right.
DES operates on the 64-bit blocks using key sizes of 56- bits. The keys are
actually stored as being 64 bits long, but every 8th bit in the key is not
used (i.e. bits numbered 8, 16, 24, 32, 40, 48, 56, and 64). However, we
will nevertheless number the bits from 1 to 64, going left to right, in the
following calculations. But, as you will see, the eight bits just mentioned
get eliminated when we create subkeys.
PC-1
57 49 41 33 25 17 9
1 58 50 42 34 26 18
10 2 59 51 43 35 27
19 11 3 60 52 44 36
63 55 47 39 31 23 15
7 62 54 46 38 30 22
14 6 61 53 45 37 29
21 13 5 28 20 12 4
Next, split this key into left and right halves, C0 and D0, where each half
has 28 bits.
Iteration Number of
Number Left Shifts
1 1
2 1
3 2
4 2
5 2
6 2
7 2
8 2
9 1
10 2
11 2
12 2
13 2
14 2
15 2
16 1
This means, for example, C3 and D3 are obtained from C2 and D2,
respectively, by two left shifts, and C16 and D16 are obtained
from C15 and D15, respectively, by one left shift. In all cases, by a single
left shift is meant a rotation of the bits one place to the left, so that after
one left shift the bits in the 28 positions are the bits that were previously in
positions 2, 3,..., 28, 1.
C0 = 1111000011001100101010101111
D0 = 0101010101100110011110001111
C1 = 1110000110011001010101011111
D1 = 1010101011001100111100011110
C2 = 1100001100110010101010111111
D2 = 0101010110011001111000111101
C3 = 0000110011001010101011111111
D3 = 0101011001100111100011110101
C4 = 0011001100101010101111111100
D4 = 0101100110011110001111010101
C5 = 1100110010101010111111110000
D5 = 0110011001111000111101010101
C6 = 0011001010101011111111000011
D6 = 1001100111100011110101010101
C7 = 1100101010101111111100001100
D7 = 0110011110001111010101010110
C8 = 0010101010111111110000110011
D8 = 1001111000111101010101011001
C9 = 0101010101111111100001100110
D9 = 0011110001111010101010110011
C10 = 0101010111111110000110011001
D10 = 1111000111101010101011001100
C11 = 0101011111111000011001100101
D11 = 1100011110101010101100110011
C12 = 0101111111100001100110010101
D12 = 0001111010101010110011001111
C13 = 0111111110000110011001010101
D13 = 0111101010101011001100111100
C14 = 1111111000011001100101010101
D14 = 1110101010101100110011110001
C15 = 1111100001100110010101010111
D15 = 1010101010110011001111000111
C16 = 1111000011001100101010101111
D16 = 0101010101100110011110001111
We now form the keys Kn, for 1<=n<=16, by applying the following
permutation table to each of the concatenated pairs CnDn. Each pair has 56
bits, but PC-2 only uses 48 of these.
PC-2
14 17 11 24 1 5
3 28 15 6 21 10
23 19 12 4 26 8
16 7 27 20 13 2
41 52 31 37 47 55
30 40 51 45 33 48
44 49 39 56 34 53
46 42 50 36 29 32
Therefore, the first bit of Kn is the 14th bit of CnDn, the second bit the
17th, and so on, ending with the 48th bit of Kn being the 32th bit of CnDn.
Example: For the first key we have C1D1 = 1110000 1100110 0101010
1011111 1010101 0110011 0011110 0011110
IP
58 50 42 34 26 18 10 2
60 52 44 36 28 20 12 4
62 54 46 38 30 22 14 6
64 56 48 40 32 24 16 8
57 49 41 33 25 17 9 1
59 51 43 35 27 19 11 3
61 53 45 37 29 21 13 5
63 55 47 39 31 23 15 7
M = 0000 0001 0010 0011 0100 0101 0110 0111 1000 1001 1010 1011
1100 1101 1110 1111
IP = 1100 1100 0000 0000 1100 1100 1111 1111 1111 0000 1010 1010
1111 0000 1010 1010
Here the 58th bit of M is "1", which becomes the first bit of IP. The 50th
bit of M is "1", which becomes the second bit of IP. The 7th bit of M is
"0", which becomes the last bit of IP.
Next divide the permuted block IP into a left half L0 of 32 bits, and a right
half R0 of 32 bits.
Ln = Rn-1
Rn = Ln-1 + f(Rn-1,Kn)
This results in a final block, for n = 16, of L16R16. That is, in each
iteration, we take the right 32 bits of the previous result and make them
the left 32 bits of the current step. For the right 32 bits in the current step,
we XOR the left 32 bits of the previous step with the calculation f .
Let E be such that the 48 bits of its output, written as 8 blocks of 6 bits
each, are obtained by selecting the bits in its inputs in order according to
the following table:
E BIT-SELECTION TABLE
32 1 2 3 4 5
4 5 6 7 8 9
8 9 10 11 12 13
12 13 14 15 16 17
16 17 18 19 20 21
20 21 22 23 24 25
24 25 26 27 28 29
28 29 30 31 32 1
Thus the first three bits of E(Rn-1) are the bits in positions 32, 1 and 2
of Rn-1 while the last 2 bits of E(Rn-1) are the bits in positions 32 and 1.
(Note that each block of 4 original bits has been expanded to a block of 6
output bits.)
Next in the f calculation, we XOR the output E(Rn-1) with the key Kn:
Kn + E(Rn-1).
We have not yet finished calculating the function f . To this point we have
expanded Rn-1 from 32 bits to 48 bits, using the selection table, and
XORed the result with the key Kn . We now have 48 bits, or eight groups
of six bits. We now do something strange with each group of six bits: we
use them as addresses in tables called "S boxes". Each group of six bits
will give us an address in a different S box. Located at that address will be
a 4 bit number. This 4 bit number will replace the original 6 bits. The net
result is that the eight groups of 6 bits are transformed into eight groups of
4 bits (the 4-bit outputs from the S boxes) for 32 bits total.
Kn + E(Rn-1) =B1B2B3B4B5B6B7B8,
S1(B1)S2(B2)S3(B3)S4(B4)S5(B5)S6(B6)S7(B7)S8(B8)
To repeat, each of the functions S1, S2,..., S8, takes a 6-bit block as input
and yields a 4-bit block as output. The table to determine S1 is shown and
explained below:
S1
Column Number
Row
No. 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
0 14 4 13 1 2 15 11 8 3 10 6 12 5 9 0 7
1 0 15 7 4 14 2 13 1 10 6 12 11 9 5 3 8
2 4 1 14 8 13 6 2 11 15 12 9 7 3 10 5 0
3 15 12 8 2 4 9 1 7 5 11 3 14 10 0 6 13
S1
14 4 13 1 2 15 11 8 3 10 6 12 5 9 0 7
0 15 7 4 14 2 13 1 10 6 12 11 9 5 3 8
4 1 14 8 13 6 2 11 15 12 9 7 3 10 5 0
15 12 8 2 4 9 1 7 5 11 3 14 10 0 6 13
S2
15 1 8 14 6 11 3 4 9 7 2 13 12 0 5 10
3 13 4 7 15 2 8 14 12 0 1 10 6 9 11 5
0 14 7 11 10 4 13 1 5 8 12 6 9 3 2 15
13 8 10 1 3 15 4 2 11 6 7 12 0 5 14 9
S3
10 0 9 14 6 3 15 5 1 13 12 7 11 4 2 8
13 7 0 9 3 4 6 10 2 8 5 14 12 11 15 1
13 6 4 9 8 15 3 0 11 1 2 12 5 10 14 7
1 10 13 0 6 9 8 7 4 15 14 3 11 5 2 12
S4
7 13 14 3 0 6 9 10 1 2 8 5 11 12 4 15
13 8 11 5 6 15 0 3 4 7 2 12 1 10 14 9
10 6 9 0 12 11 7 13 15 1 3 14 5 2 8 4
3 15 0 6 10 1 13 8 9 4 5 11 12 7 2 14
S5
2 12 4 1 7 10 11 6 8 5 3 15 13 0 14 9
14 11 2 12 4 7 13 1 5 0 15 10 3 9 8 6
4 2 1 11 10 13 7 8 15 9 12 5 6 3 0 14
11 8 12 7 1 14 2 13 6 15 0 9 10 4 5 3
S6
12 1 10 15 9 2 6 8 0 13 3 4 14 7 5 11
10 15 4 2 7 12 9 5 6 1 13 14 0 11 3 8
9 14 15 5 2 8 12 3 7 0 4 10 1 13 11 6
4 3 2 12 9 5 15 10 11 14 1 7 6 0 8 13
S7
4 11 2 14 15 0 8 13 3 12 9 7 5 10 6 1
13 0 11 7 4 9 1 10 14 3 5 12 2 15 8 6
1 4 11 13 12 3 7 14 10 15 6 8 0 5 9 2
6 11 13 8 1 4 10 7 9 5 0 15 14 2 3 12
S8
13 2 8 4 6 15 11 1 10 9 3 14 5 0 12 7
1 15 13 8 10 3 7 4 12 5 6 11 0 14 9 2
7 11 4 1 9 12 14 2 0 6 10 13 15 3 5 8
2 1 14 7 4 10 8 13 15 12 9 0 3 5 6 11
Example: For the first round, we obtain as the output of the eight S boxes:
f = P(S1(B1)S2(B2)...S8(B8))
16 7 20 21
29 12 28 17
1 15 23 26
5 18 31 10
2 8 24 14
32 27 3 9
19 13 30 6
22 11 4 25
we get
R1 = L0 + f(R0 , K1 )
In the next round, we will have L2 = R1, which is the block we just
calculated, and then we must calculate R2 =L1 + f(R1, K2), and so on for 16
rounds. At the end of the sixteenth round we have the blocks L16 and R16.
We thenreverse the order of the two blocks into the 64-bit block
R16L16
IP-1
40 8 48 16 56 24 64 32
39 7 47 15 55 23 63 31
38 6 46 14 54 22 62 30
37 5 45 13 53 21 61 29
36 4 44 12 52 20 60 28
35 3 43 11 51 19 59 27
34 2 42 10 50 18 58 26
33 1 41 9 49 17 57 25
That is, the output of the algorithm has bit 40 of the preoutput block as its
first bit, bit 8 as its second bit, and so on, until bit 25 of the preoutput
block is the last bit of the output.
We reverse the order of these two blocks and apply the final permutation
to
85E813540F0AB405.
The DES algorithm turns a 64-bit message block M into a 64-bit cipher
block C. If each 64-bit block is encrypted individually, then the mode of
encryption is called Electronic Code Book (ECB) mode. There are two
other modes of DES encryption, namely Chain Block Coding (CBC)
and Cipher Feedback (CFB), which make each cipher block dependent on
all the previous messages blocks through an initial XOR operation.
Cracking DES
Before DES was adopted as a national standard, during the period NBS
was soliciting comments on the proposed algorithm, the creators of public
key cryptography, Martin Hellman and Whitfield Diffie, registered some
objections to the use of DES as an encryption algorithm. Hellman wrote:
"Whit Diffie and I have become concerned that the proposed data
encryption standard, while probably secure against commercial assault,
may be extremely vulnerable to attack by an intelligence organization"
(letter to NBS, October 22, 1975).
Diffie and Hellman then outlined a "brute force" attack on DES. (By
"brute force" is meant that you try as many of the 2^56 possible keys as
you have to before decrypting the ciphertext into a sensible plaintext
message.) They proposed a special purpose "parallel computer using one
million chips to try one million keys each" per second, and estimated the
cost of such a machine at $20 million.
Fast forward to 1998. Under the direction of John Gilmore of the EFF, a
team spent $220,000 and built a machine that can go through the entire 56-
bit DES key space in an average of 4.5 days. On July 17, 1998, they
announced they had cracked a 56-bit key in 56 hours. The computer,
called Deep Crack, uses 27 boards each containing 64 chips, and is
capable of testing 90 billion keys a second.
Triple-DES
Triple-DES is just DES with two 56-bit keys applied. Given a plaintext
message, the first key is used to DES- encrypt the message. The second
key is used to DES-decrypt the encrypted message. (Since the second key
is not the right key, this decryption just scrambles the data further.) The
twice-scrambled message is then encrypted again with the first key to
yield the final ciphertext. This three-step procedure is called triple-DES.
Triple-DES is just DES done three times with two keys used in a
particular order. (Triple-DES can also be done with three separate keys
instead of only two. In either case the resultant key space is about 2^112.)
General References
-30-
This article appeared in Laissez Faire City Times, Vol 2, No. 28.
Homepage: http://orlingrabbe.com/
Laissez Faire City Times: http://zolatimes.com/
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <math.h>
#include <time.h>
int IP[] =
};
int E[] =
32, 1, 2, 3, 4, 5,
4, 5, 6, 7, 8, 9,
};
int P[] =
2, 8, 24, 14,
32, 27, 3, 9,
22, 11, 4, 25
};
int FP[] =
};
int S1[4][16] =
};
int S2[4][16] =
};
int S3[4][16] =
};
int S4[4][16] =
};
int S5[4][16] =
};
int S6[4][16] =
};
int S7[4][16]=
int S8[4][16]=
};
int PC1[] =
};
int PC2[] =
};
int SHIFTS[] = { 1, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 1 };
FILE* out;
int IPtext[64];
int EXPtext[48];
int XORtext[48];
int X[8][6];
int X2[32];
int R[32];
int key56bit[56];
int key48bit[17][48];
int CIPHER[64];
int ENCRYPTED[64];
if (E[i] == pos + 1)
EXPtext[i] = text;
}
int i;
if (IP[i] == pos + 1)
break;
IPtext[i] = text;
int F1(int i)
int r, c, b[6];
b[j] = X[i][j];
r = b[0] * 2 + b[5];
if (i == 0)
return S1[r][c];
else if (i == 1)
return S2[r][c];
else if (i == 2)
return S3[r][c];
else if (i == 3)
return S4[r][c];
else if (i == 4)
return S5[r][c];
else if (i == 5)
return S6[r][c];
else if (i == 6)
return S7[r][c];
else if (i == 7)
return S8[r][c];
return (a ^ b);
int k, j, m;
static int i;
if (i % 32 == 0)
i = 0;
m = 1 << j;
k = value & m;
if (k == 0)
i = i + 4;
int k = 0;
X[i][j] = XORtext[k++];
int value;
value = F1(i);
ToBits(value);
int i;
if (P[i] == pos + 1)
break;
R[i] = text;
if (mode == 0)
else
SBox(XORtext);
PBox(i, X2[i]);
int i;
for (i = 0; i < 64; i++)
if (FP[i] == pos + 1)
break;
ENCRYPTED[i] = text;
void convertToBinary(int n)
int k, m;
m = 1 << i;
k = n & m;
if (k == 0)
fprintf(out, "0");
else
fprintf(out, "1");
char ch;
int i = n * 8;
while (i)
{
ch = fgetc(inp);
if (ch == -1)
break;
i--;
convertToBinary(ch);
fclose(out);
fclose(inp);
initialPermutation(i, plain[i]);
LEFT[0][i] = IPtext[i];
cipher(k, 0);
if (i < 32)
CIPHER[i] = RIGHT[16][i];
else
finalPermutation(i, CIPHER[i]);
fclose(out);
initialPermutation(i, plain[i]);
LEFT[0][i] = IPtext[i];
cipher(k, 1);
if (i < 32)
CIPHER[i] = RIGHT[16][i];
else
finalPermutation(i, CIPHER[i]);
fclose(out);
int value = 0;
int bittochar()
convertToBits(&ENCRYPTED[i]);
fclose(out);
int i;
if (PC2[i] == pos + 1)
break;
key48bit[round][i] = text;
int i;
if (PC1[i] == pos + 1)
break;
key56bit[i] = text;
}
int k, backup[17][2];
int CD[17][56];
key64to56(i, key[i]);
if (i < 28)
C[0][i] = key56bit[i];
else
k = 0;
k = 0;
CD[j][i] = C[j][i];
key56to48(j, i, CD[j][i]);
int i = -1;
char ch;
while (!feof(in))
ch = getc(in);
plain[++i] = ch - 48;
Decryption(plain + i * 64);
bittochar();
fclose(in);
int i = -1;
char ch;
while (!feof(in))
{
ch = getc(in);
plain[++i] = ch - 48;
Encryption(plain + 64 * i);
fclose(in);
void create16Keys()
int i = 0, ch;
while (!feof(pt))
ch = getc(pt);
key[i++] = ch - 48;
key64to48(key);
fclose(pt);
}
long int findFileSize()
perror("fseek() failed");
size = ftell(inp);
fclose(inp);
return size;
int main()
fclose(out);
fclose(out);
fclose(out);
create16Keys();
encrypt(n);
decrypt(n);
return 0;