AES is designed to work on bytes. However, each byte is interperted as a representation of the polynomial:
| 2d = 00101101 = | x5 + x3 + x2 + 1 |
| a3 = 10100011 = | x7 + x5 + x + 1 |
| 2d * a3 = | (x12 + x10 + x9 + x7) + (x10 + x8 + x7 + x5) + (x6 + x4 + x3 + x) + (x5 + x3 + x2 + 1) |
| = | x12 + x9 + x8 + x6 + x4 + x2 + x + 1 |
| - modulus * x4 = | x9 + x7 + x6 + x5 + x2 + x + 1 |
| - modulus * x = | x7 + x6 + x4 + 1 |
| 2d * a3 = | 11010001 = d1 |