I'm new on the topic of finite fields, specifically $GF(2^8)$.
I've come across the information that it's possible to implement multiplication using logarithm and exponential tables. But how are these tables formed exactly? Some answers talk about a generator while others talk about using a primitive polynomial. Are those the same?
What I exactly want to know is how pre-compute the log and exp table using the following primitive polynomial: $$x^8 + x^4 + x^3 + x^2 + 1$$
where mul denotes multiplication in the AES field.without a primitive polynomial? – kelalaka Nov 23 '18 at 18:57