Data Encryption Standard (DES)
Biometrics and Cryptography@UTC/CSE
6.1.1 History
DES was adopted as a US federal standard for commercial encryption in 1975.
Feistel Cipher: the fundamental building block of DES designed by IBM.
Design requirements:
must provide high level of security (commercial standard)
Security must not depend on secrecy of algorithm (Kerckhoffs principle) Must be easily and economically implemented
6.1.2 Overview
DES is a block cipher, as shown in Figure 6.1.
Figure 6.1 Encryption and decryption with DES
DES Structure
The encryption process is made of two permutations (Pboxes), which we call initial and final permutations, and sixteen Feistel rounds.
6.2.1 Initial and Final Permutations
Figure 6.3 Initial and final permutation steps in DES
6.2.1 Continue
Table 6.1 Initial and final permutation tables
How to read this table? The 58th bit of input x will be the first bit of output IP(x), the 50th bit of x is the second bit of IP(x), etc.
The initial and final permutations are straight P-boxes that are inverses of each other. They have no cryptography significance in DES.
6.2.1 Continued
Example 6.1
Find the output of the initial permutation box when the input is given in hexadecimal as:
Solution Only bit 25 and bit 64 are 1s; the other bits are 0s. In the final permutation, bit 25 becomes bit 64 and bit 63 becomes bit 15. The result is
6.2.2 Rounds
DES uses 16 rounds. Each round of DES is a Feistel cipher.
Separate message block into two 32-bit halves, Li and Ri Introduce confusion by using a complex nonlinear function f f has two inputs: Ri and a 48-bit round key, Ki Introduce diffusion by adding Li and the output of f
Figure 6.4
A round in DES (encryption site)
Li+1 = Ri Ri+1 = Li f(Ri, Ki+1)
6.2.2 Continued
DES Function
The heart of DES is the DES function. The DES function applies a 48-bit key to the rightmost 32 bits to produce a 32-bit output.
Figure 6.5
DES function
6.2.2 Continue
Expansion P-box Since RI1 is a 32-bit input and KI is a 48-bit key, we first need to expand RI1 to 48 bits.
Figure 6.6 Expansion permutation
6.2.2 Continue
Although the relationship between the input and output can be defined mathematically, DES uses Table 6.2 to define this P-box.
Table 6.6 Expansion P-box table
6.2.2 Continue
Whitener (XOR) After the expansion permutation, DES uses the XOR operation on the expanded right section and the round key. Note that both the right section and the key are 48bits in length. Also note that the round key is used only in this operation.
6.2.2 Continue
S-Boxes The S-boxes do the real mixing (confusion). DES uses 8 S-boxes, each with a 6-bit input and a 4-bit output. See Figure 6.7.
Figure 6.7 S-boxes
6.2.2 Continue
Figure 6.8 S-box rule
6.2.2 Continue
Table 6.3 shows the permutation for S-box 1. For the rest of the boxes see the textbook.
Table 6.3 S-box 1
6.2.2 Continued
Example 6.3
The input to S-box 1 is 100011. What is the output?
Solution If we write the first and the sixth bits together, we get 11 in binary, which is 3 in decimal. The remaining bits are 0001 in binary, which is 1 in decimal. We look for the value in row 3, column 1, in Table 6.3 (S-box 1). The result is 12 in decimal, which in binary is 1100. So the input 100011 yields the output 1100.
6.2.2 Continue
Straight Permutation
Table 6.11 Straight permutation table
6.2.3 Key Generation
Figure 6.10
Key generation
The round-key generator creates sixteen 48-bit keys out of a 56-bit cipher key.
6.2.3 Continued
Table 6.12 Parity-bit drop table
64 56
Table 6.13 Number of bits shifts
6.2.3 Continued
Table 6.14 Key-compression table
56 48
6.3.1 Properties
Two desired properties of a block cipher are the avalanche effect and the completeness.
Example 6.7 To check the avalanche effect in DES, let us encrypt two plaintext blocks (with the same key) that differ only in one bit and observe the differences in the number of bits in each round.
6.3.1 Continued
Example 6.7 Continued
Although the two plaintext blocks differ only in the rightmost bit, the ciphertext blocks differ in 29 bits. This means that changing approximately 1.5 percent of the plaintext creates a change of approximately 45 percent in the ciphertext. Table 6.17 Number of bit differences for Example 6.7
6.3.1 Continued
Completeness effect Completeness effect means that each bit of the ciphertext needs to depend on many bits on the plaintext.
6.3.2 Design Criteria
S-Boxes The design provides confusion and diffusion of bits from each round to the next. P-Boxes They provide diffusion of bits.
Number of Rounds DES uses sixteen rounds of Feistel ciphers. the ciphertext is thoroughly a random function of plaintext and ciphertext.
6.3.3 DES Weaknesses
During the last few years critics have found some weaknesses in DES. Weaknesses in Cipher Design 1. Weaknesses in S-boxes
Two specifically chosen inputs to an S-box can create same output
2. Weaknesses in P-boxes
initial and final permutations have no security benefits the first and fourth bits of every 4-bit series are repeated
3. Weaknesses in Key
Weak keys create same 16 round keys Semi-weak keys create 2 different round keys Possible weak keys create 4 distinct round keys Key complement
6.3.3 DES Weaknesses
There are four weak keys. After parity drop operation, a key consists either of all 0s, all 1s, or half 0s and half 1s. Weak keys create same 16 round keys.
6.3.3 Continued
Example 6.8
Let us try the first weak key in Table 6.18 to encrypt a block two times. After two encryptions with the same key the original plaintext block is created. Note that we have used the encryption algorithm two times, not one encryption followed by another decryption.
6.3.3 Continued
Figure 6.11 Double encryption and decryption with a weak key
E k ( Ek ( P)) P
6.3.3 Continued
Semi-weak keys create only 2 different round keys; k1, k2
6.3.3 Continued
Semi-week keys create 2 different round keys
6.3.3 Continued
Figure 6.12 A pair of semi-weak keys in encryption and decryption
E k2 ( E k1 ( P )) P
6.3.3 Continued
Example 6.9
What is the probability of randomly selecting a weak, a semiweak, or a possible weak key? Solution DES has a key domain of 256. The total number of the above keys are 64 (4 + 12 + 48). The probability of choosing one of these keys is 8.8 1016, almost impossible.
6.3.3 Continued
Key Complement In the key domain ( 256 ), definitely half of the keys are complement of the other half. A key complement can be made by inverting (changing 0 to 1 or 1 to 0) each bit in the key. Does a key complement simplify the job of the cryptanalysis? It happens that it does. Eve can only half of the possible keys ( 255 ) to perform brute-force attack. This is because
C E ( K , P) C E ( K , P)
In other words, if we encrypt the complement of plaintext with the complement of the key, we get the complement of the ciphertext. Eve does not have to test all 256 possible keys, she can test only half of them and then complement the result.
6.3.3 Continued
Example 6.10
Let us test the claim about the complement keys. We have used an arbitrary key and plaintext to find the corresponding ciphertext. If we have the key complement and the plaintext, we can obtain the complement of the previous ciphertext (Table 6.20).
6-4 Multiple DES
Major limitation of DES Key length is too short (56 bits). Question: So can we apply DES multiple times to increase the strength of encryption? Advantage: We could then preserve the existing investment in software and equipment. Topics discussed in this section:
6.4.1 Double DES 6.4.4 Triple DES
Double DES (I)
Apply two iterations of DES with two keys K1 and K2
What if DES has a structure of an algebraic group, such that for each K1 and K2 there is a K3 with the property: Ek2(Ek1(P)) = Ek3(P)
Meet-in-the-Middle Attack However, using a known-plaintext attack called meet-in-the-middle attack proves (1992) that double DES improves this vulnerability slightly (to 257 tests), but not tremendously (to 2112).
6.4.1 Continued
Figure 6.14 Meet-in-the-middle attack for double DES
For given P and C search only O(2^56) pairs of keys K1 and K2 at the intermediate message M Encrypt P under all 2^56 options for K1 Denote the results by M1, M2, . . ., Mn Decrypt C under all 2^56 options for K2 Denote the results by M1, M2, . . ., Mn
6.4.1 Continued
Figure 6.15 Tables for meet-in-the-middle attack
Sort the values M1, M2, . . ., Mn Sort the values M1, M2, . . ., Mn Eve will find at least one match of M with two keys (k1 and k2). If there is only match, Eve found the key. If there is more than one, Eve takes another intercepted plain-text-cipher text pair. This is repeated until she finally finds a unique pair.
Triple-DES (I)
EEE Mode: DES Encrypt-Encrypt-Encrypt with three keys K1, K2, K3 (168 bits) and strength O (2110) against Meet-in-the-Middle Not compatible with regular DES
Triple-DES (II)
EDE Mode: DES Encrypt-Decrypt-Encrypt with two keys K1, & K2 Properties:
Two keys (112 bits) Strength O(2110) against Meet-in-the-Middle Compatible with regular DES when K1= K2
E-D-E versus E-E-E
Why E-D-E? Initial and final permutations would cancel each other out with EEE (minor advantage to EDE) EDE compatible with single DES if same keys. Only 2 different Keys needed with E-D-E
The possibility of known-plaintext attacks on triple DES with two keys has enticed some applications to use triple DES with three keys. Triple DES with three keys is used by many applications such as PGP. New candidates numerous - RC5, IDEA, two-fish, CAST, etc.
6-5 Security of DES
DES, as the first important block cipher, has gone through much scrutiny.
The size of the key space, 256, is too small to be really secure. Brute-Force Attack: Combining short cipher key in DES with the key complement weakness, it is clear that DES can be broken using 2^55 encryptions. Security of DES mainly relies on the nonlinearity of the f (i.e. the S-boxes)
6-5 Security of DES
Differential cryptanalysis: Designed S-boxes and 16 rounds aim to make DES specifically resistant to this type of attack. Linear cryptanalysis: DES is more vulnerable to linear cryptanalysis than to differential cryptanalysis. Sboxes are not very resistant to linear cryptanalysis. It has been shown that DES can be broken using 243 pairs of known plaintexts. However, from the practical point of view, finding so many pairs is very unlikely.
Exhaustive Key Search
In 1993, Michael Wiener presented a pipelined chip which does 16 encryptions simultaneously and tests 5107 DES keys per second. Each chip could be built for US$10 using current technology. A frame consisting of 5760 chips can be built for $100K.
Machine Unit Cost $100,000 $1,000,000 (10 frames) $10,000,000 (100 frames) Expected Time 35 hours 3.5 hours 21 minutes
In 1997, cost cut by a factor of 6 Software version of DES cracking effort can be found at http://www.distributed.net/des/ Current Record: 22 hrs and 15 mins to break DES by distributed software cracking effort.
Overview of DES
C = DES (K, M) Block size = 64 bits Key size = 56 bits
Number of rounds = 16
IP - Initial Permutation IP-1 - The inverse of IP
f
Ki
- A nonlinear function
- Round i subkey (48 bits)
Each Feistel block can be described as Li = Ri-1 Ri = Li-1 f (Ri-1, Ki)
Advanced Encryption Standard (AES)
7-1 INTRODUCTION
The Advanced Encryption Standard (AES) is a symmetric-key block cipher published by the National Institute of Standards and Technology (NIST) in December 2001.
7.1.2 Criteria
The criteria defined by NIST for selecting AES fall into three areas: 1. Security 2. Cost 3. Implementation.
7.48
Rounds.
AES is a non-Feistel cipher that encrypts and decrypts a data block of 128 bits. It uses 10, 12, or 14 rounds. The key size, which can be 128, 192, or 256 bits, depends on the number of rounds. Note AES has defined three versions, with 10, 12, and 14 rounds. Each version uses a different cipher key size (128, 192, or 256), but the round keys are always 128 bits.
Rounds.
Figure 7.1 General design of AES encryption cipher
7.1.4 Data Units.
Figure 7.2 Data units used in AES
7.51
7.1.4 Continue
Figure 7.3 Block-to-state and state-to-block transformation
7.52
7.1.4 Continue
Example 7.1
Continue
Figure 7.4 Changing plaintext to state
7.53
Structure of Each Round
Figure 7.5 Structure of each round at the encryption site
7-2 TRANSFORMATIONS
To provide security, AES uses four types of transformations: substitution, permutation, mixing, and key-adding.
Topics discussed in this section:
7.2.1 7.2.2 7.2.3 7.2.4 Substitution Permutation Mixing Key Adding
7.2.1 Substitution
AES, like DES, uses substitution. AES uses two invertible transformations. SubBytes The first transformation, SubBytes, is used at the encryption site. To substitute a byte, we interpret the byte as two hexadecimal digits. Note The SubBytes operation involves 16 independent byte-to-byte transformations.
7.2.1 Substitution
Figure 7.6 SubBytes transformation
7.2.1 Substitution
7.2.2 Permutation
Another transformation found in a round is shifting, which permutes the bytes. ShiftRows In the encryption, the transformation is called ShiftRows.
Figure 7.9 ShiftRows transformation
7.2.2 Permutation
Example 7.4
Figure 7.10 shows how a state is transformed using ShiftRows transformation. The figure also shows that InvShiftRows transformation creates the original state.
Figure 7.10 ShiftRows transformation in Example 7.4
7.2.3 Mixing
We need an interbyte transformation that changes the bits inside a byte, based on the bits inside the neighboring bytes. We need to mix bytes to provide diffusion at the bit level.
Figure 7.11 Mixing bytes using matrix multiplication
7.2.3 Mixing
MixColumns The MixColumns transformation operates at the column level; it transforms each column of the state to a new column.
Figure 7.13 MixColumns transformation
7.2.4 Key Adding
AddRoundKey AddRoundKey proceeds one column at a time. AddRoundKey adds a round key word with each state column matrix; the operation in AddRoundKey is matrix addition. Note The AddRoundKey transformation is the inverse of itself.
7.2.4 Key Adding
Figure 7.15 AddRoundKey transformation
Cipher and reverse cipher of AES
AES Security
AES was designed after DES. Most of the known attacks on DES were already tested on AES. Brute-Force Attack AES is definitely more secure than DES due to the larger-size key. Statistical Attacks Numerous tests have failed to do statistical analysis of the ciphertext. Differential and Linear Attacks There are no differential and linear attacks on AES as yet.
Simplicity and Cost
The algorithms used in AES are so simple that they can be easily implemented using cheap processors and a minimum amount of memory.
Cryptographic APIs
1.
2.
3. 4. 5. 6.
Cryptlib (http://www.cryptlib.com/) OpenSSL (http://www.openssl.org) Crypt++ (http://www.cryptopp.com/) BSAFE (http://www.rsa.com/node.aspx?id=1204) Cryptix (http://www.cryptix.org/) Crypt:: CPAN modules (http://www.cpan.org/,
http://search.cpan.org/dist/Crypt-SSLeay/)
Supported Ciphers
1. Range of MAC algorithms
Almost all include MD5, SHA-1
2. Range of symmetric algorithms
Almost all include AES, DES
3. Range of public key algorithms
Almost all include RSA, Diffie-Hellman, DSA
Cryptographic APIs
Cryptlib
easy to use free for noncommercial use
poorly documented open source popular
OpenSSL
Cryptographic APIs
Crypto++
C++ library open source well documented, Java, C/C++ most popular commercial library Was commercial SDK from RSA free from 2009 under RSA Share Project https://community.emc.com/community/edn/rsashare?view =tags&tags=java
BSAFE
Cryptographic APIs
Cryptix: JCA, JCE
open source Java library, C# library http://www.bouncycastle.org/java.html open source crypt, hash, rand modules http://www.amk.ca/python/code/crypto well documented many different libraries
Python Cryptographic Toolkit
Crypt:: CPAN modules for Perl