I need to find algorithm for finding roots of irreducible polynomial $x^4+x^3+x^2+x+1$ over $GF(2)$ in the extension field $GF(2^4)$, which has $x^4+x+1$ as defining polynomial. I tried listing out all elements of $GF(2^4)$ and checking whether it is a root of $f(x)$ and verified that $f(x)$ have roots $t^3$, $t^3+t$, $t^3+t^2$ and $t^3+t^2+t+1$, where $t$ is root of $x^4+x+1$. Is there any other procedure for finding roots of $f(x)$?
I searched online and got this algorithm from IEEE. Can anyone explain this algorithm 1