by Neal R. Wagner
Copyright © 2001 by Neal R. Wagner. All rights reserved.
NOTE: This site is obsolete. See book draft (in PDF):
Here is a Java program that will generate a number of 256-byte tables needed for the Advanced Encryption Standard:
// Tables: construct and print various 256-byte tables needed for AES
public class Tables {
public Tables() {
loadE();
loadL();
loadInv();
loadS();
loadInvS();
loadPowX();
}
public byte[] E = new byte[256]; // "exp" table (base 0x03)
public byte[] L = new byte[256]; // "Log" table (base 0x03)
public byte[] S = new byte[256]; // SubBytes table
public byte[] invS = new byte[256]; // inverse of SubBytes table
public byte[] inv = new byte[256]; // multiplicative inverse table
public byte[] powX = new byte[15]; // powers of x = 0x02
private String[] dig = {"0","1","2","3","4","5","6","7",
"8","9","a","b","c","d","e","f"};
// FFMulFast: fast multiply using table lookup
public byte FFMulFast(byte a, byte b){
int t = 0;;
if (a == 0 || b == 0) return 0;
t = (L[(a & 0xff)] & 0xff) + (L[(b & 0xff)] & 0xff);
if (t > 255) t = t - 255;
return E[(t & 0xff)];
}
// FFMul: slow multiply, using shifting
public byte FFMul(byte a, byte b) {
byte aa = a, bb = b, r = 0, t;
while (aa != 0) {
if ((aa & 1) != 0)
r = (byte)(r ^ bb);
t = (byte)(bb & 0x80);
bb = (byte)(bb << 1);
if (t != 0)
bb = (byte)(bb ^ 0x1b);
aa = (byte)((aa & 0xff) >> 1);
}
return r;
}
// hex: print a byte as two hex digits
public String hex(byte a) {
return dig[(a & 0xff) >> 4] + dig[a & 0x0f];
}
// hex: print a single digit (for tables)
public String hex(int a) {
return dig[a];
}
// loadE: create and load the E table
public void loadE() {
byte x = (byte)0x01;
int index = 0;
E[index++] = (byte)0x01;
for (int i = 0; i < 255; i++) {
byte y = FFMul(x, (byte)0x03);
E[index++] = y;
x = y;
}
}
// loadL: load the L table using the E table
public void loadL() { // careful: had 254 below several places
int index;
for (int i = 0; i < 255; i++) {
L[E[i] & 0xff] = (byte)i;
}
}
// loadS: load in the table S
public void loadS() {
int index;
for (int i = 0; i < 256; i++)
S[i] = (byte)(subBytes((byte)(i & 0xff)) & 0xff);
}
// loadInv: load in the table inv
public void loadInv() {
int index;
for (int i = 0; i < 256; i++)
inv[i] = (byte)(FFInv((byte)(i & 0xff)) & 0xff);
}
// loadInvS: load the invS table using the S table
public void loadInvS() {
int index;
for (int i = 0; i < 256; i++) {
invS[S[i] & 0xff] = (byte)i;
}
}
// loadPowX: load the powX table using multiplication
public void loadPowX() {
int index;
byte x = (byte)0x02;
byte xp = x;
powX[0] = 1; powX[1] = x;
for (int i = 2; i < 15; i++) {
xp = FFMulFast(xp, x);
powX[i] = xp;
}
}
// FFInv: the multiplicative inverse of a byte value
public byte FFInv(byte b) {
byte e = L[b & 0xff];
return E[0xff - (e & 0xff)];
}
// ithBIt: return the ith bit of a byte
public int ithBit(byte b, int i) {
int m[] = {0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80};
return (b & m[i]) >> i;
}
// subBytes: the subBytes function
public int subBytes(byte b) {
byte inB = b;
int res = 0;
if (b != 0) // if b == 0, leave it alone
b = (byte)(FFInv(b) & 0xff);
byte c = (byte)0x63;
for (int i = 0; i < 8; i++) {
int temp = 0;
temp = ithBit(b, i) ^ ithBit(b, (i+4)%8) ^ ithBit(b, (i+5)%8) ^
ithBit(b, (i+6)%8) ^ ithBit(b, (i+7)%8) ^ ithBit(c, i);
res = res | (temp << i);
}
return res;
}
// printTable: print a 256-byte table
public void printTable(byte[] S, String name) {
System.out.print("<table border>");
System.out.print("<tr><th colspan=2 rowspan=2>" + name + "(rs)</th>");
System.out.print("<th colspan=16>s</th></tr><tr>");
for (int i = 0; i < 16; i++)
System.out.print("<th>" + hex(i) + "</th>");
System.out.println("</tr><tr><th rowspan=17>r</th></tr>");
for (int i = 0; i < 256; i++) {
if (i%16 == 0)
System.out.print("<tr><th> " + hex(i/16) + " </th>");
System.out.print("<td> " + hex(S[i]) + " </td>");
if (i%16 == 15) System.out.println("</tr>");
}
System.out.println("</table>");
}
// printL: print the L table
public void printL() {
printTable(L, "L");
}
// printE: print the E table
public void printE() {
printTable(E, "E");
}
// printS: print the S table
public void printS() {
printTable(S, "S");
}
// printInv: print the inv table
public void printInv() {
printTable(inv, "inv");
}
// printInvS: print the invS table
public void printInvS() {
printTable(invS, "iS");
}
// printpowX: print the powX table
public void printPowX() {
System.out.print("<table border><tr><th colspan=17>");
System.out.print("Powers of x = 0x02</th></tr><tr><th>i</th><th></th>");
for (int i = 0; i < 15; i++)
System.out.print("<th>" + i + "</th>");
System.out.println("</tr><tr><th>x<sup>i</sup></th><th></th>");
for (int i = 0; i < 15; i++)
System.out.print("<td>" + hex(powX[i]) + "</td>");
System.out.println("</tr></table>");
}
public static void main(String[] args) {
Tables sB = new Tables();
// sB.printL();
// sB.printE();
// sB.printS();
// sB.printInvS();
// sB.printInv();
sB.printPowX();
}
}