I want to compute all degree <=d polynomials from GF(2)[x1, x2] and then evaluate them at a certain polynomial input
eg degree d <= 1 and evaluation at (p^2, p^3 +1)
0 -> 0
1 -> 1
x1 -> p^2
x1 + 1 -> p^2 + 1
x2 -> p^3 + 1
x2 + 1 -> p^3
x1 + x2 -> p^2 + p^3 + 1
x1 + x2 + 1 -> p^2 + p^3