Consider $GF(2^8)$ with reducing polynomial $m_p = x^8+x^4+x^2+x^1+x^0$, compute multiplication between $a=x^7+x^0$ and $b=x$.
Following https://en.wikipedia.org/wiki/Finite_field_arithmetic#Multiplication, it seems that the multiplication rule $a \cdot b = (a\cdot b) \mod m_p$. However, if we use this rule, we have $(x^7+x^0)\cdot(x^1) \mod (x^8+x^4+x^2+x^1+x^0)$, this results in $x^8+x^1$, which is beyond the Galois field. Is this multiplication rule wrong? If so, what is the formulated rule for finite field multiplication?