I'm learning NTL and I have a doubt: How will I be able to get any specific element of any finite field?
Here is my code
GF2X P = BuildIrred_GF2X(256);
GF2E::init(P);
GF2E zero = GF2E::zero();
GF2E one;
GF2E r = random_GF2E(); //I want change the function random_GF2E()
I want change the function random_GF2E()
by any other to get a specific element.