130 likes | 406 Views
A simple algebraic representation of Rijndael. Niels Ferguson Richard Schroeppel Doug Whiting. I am biased. I’m one of the designers of Twofish, an AES finalist that lost to Rijndael in the AES competition. I spent several month attacking Rijndael. The finite field GF(2 8 ).
E N D
A simple algebraic representation of Rijndael Niels FergusonRichard SchroeppelDoug Whiting
I am biased • I’m one of the designers of Twofish, an AES finalist that lost to Rijndael in the AES competition. • I spent several month attacking Rijndael.
The finite field GF(28) • It is a field: you can add, subtract, multiply, and divide. • There are 28 = 256 elements. • Field addition is the XOR operation. • Multiplication is similar to modular multiplication, without any carries.
Squaring in GF(28) We all know that (a + b)2 = a2 + ab + ab + b2 but as addition in GF(28) is a XOR we get (a + b)2 = a2 + b2 This is known as the Freshman’s Dream. Squaring is a bit-linear operation!
The MixColumn operation Matrix multiplication: each output byte is a linear combination of input bytes. b0 = 2a0 + 3a1 + a2 + a3 b1 = a0 + 2a1 + 3a2 + a3 b2 = a0 + a1 + 2a2 + 3a3 b3 = 3a0 + a1 + a2 + 2a3
S-box has three layers • Inversion in the field GF(28). • Bit-linear function (each output bit is the sum of some input bits). • Addition of a constant.
Bit-linear functions in GF(28) • Any bit-linear function in GF(28) can be written as ax128+bx64+cx32+dx16+ex8+fx4+gx2+hx • Squaring is bit-linear, so all polynomials of this form are bit-linear. • There are 264 polynomials of this form, and 264 bit-linear functions.
Rewriting the S-box • The constant can be moved into the key schedule. • We can rewrite the S-box as
Combined S-box and MixColumn • MixColumn: • Combined:
One round Can be written as: or
Conclusions • Rijndael depends on a new complexity assumption: You cannot solve equations of this form efficiently in GF(28). • We have no idea how hard this problem is.
Which block cipher to choose • Rijndael/AES: fast, available, and the safe choice (for your career). • Serpent: built like a tank, but slow • Twofish: most of the security of Serpent, with most of the speed of Rijndael.