Hallo
I want to perform finite field multiplication in by using operation in one of its sub fields.
f4 = GF(4, 'x')
f16 = GF(16, 'y')
ff = RelativeFiniteFieldExtension(f16, f4)
Now I am stuck:
- How do I map element from
ff
to a vector overf4
- After performing the computation in
f4
map the element back inf
?
The ideal will be that the mapping to ff
just concatenate two element in f4
.