Impressum und Datenschutzerklaerung

Calculation of 0xff

m(x) = 0x11b = 100011011 = x^8 + x^4 + x^3 + x + 1
a(x) = 0xff =  11111111 = x^7 + x^6 + x^5 + x^4 + x^3 + x^2 + x + 1
m(x) = (x + 1) * a(x) + (x^4 + x^3 + x)

Calculation of 0xff-1 in the finite field GF(28)

00011010 = 00000001 * 100011011 + 00000011 * 11111111
00000001 = 00001011 * 100011011 + 00011100 * 11111111
00000000 = 11111111 * 100011011 + 100011011 * 11111111

a-1(x) = x^4 + x^3 + x^2 = 00011100 = 0x1c

The calculation of 0xff-1 is made with the Extended Euclidean algorithm. Instead of normal division and multiplication you need to use Polynomialdivision and Polynomialmultiplication.


Affine transformation over GF(2)
           1 0 0 0 1 1 1 1      0     1     0
1 1 0 0 0 1 1 1 0 1 1
1 1 1 0 0 0 1 1 1 0 1
1 1 1 1 0 0 0 1 1 0 0
SBOX(ff) = 1 1 1 1 1 0 0 0 * 1 + 0 = 1
0 1 1 1 1 1 0 0 0 1 0
0 0 1 1 1 1 1 0 0 1 0
0 0 0 1 1 1 1 1 0 0 0


SBOX(ff) = 00010110 = 16

For more information see FIPS 197.



Implemented by bachph [at] philba [dot] com