I'm learning finite fields behind Advance Encryption Standard. As far as I know, the irreducible polynomial used in AES is $x^8+x^4+x^3+x+1$. This is because AES s-box is based on bytes(8bits). Now I am trying to enlarge the s-box to 4bytes(32bits), so I need to find a polynomials of degree 32 over $Z_2[x]$.
So the question is How can i get a irreducible polynomials of degree 32 over $Z_2[x]$?
I've searched for some approaches and not very familiar with trace most mentioned. What materials relating $Z_2[x]$ can I refer to?
Besides, I would appreciate it if there is some constructed such polynomials for me to test! Thanks!