Skip to main content
. 2019 Feb 10;19(3):720. doi: 10.3390/s19030720
Algorithm 1 Wang Inversion Method.
Input:A(x)F2m, f(x) the irreducible polynomial of F2m
Output: C(x)=A1(x)modf(x)
C(x)A(x)
for i=1 to m2 do
  B(x)C2(x)modf(x)
  C(x)A(x)B(x)modf(x)
end for
C(x)C2(x)modf(x)

return C(x)