gf(2) mod

c = a % b

Calculate c = a/b, result is cremainder

gf(2) Polynomial long division

c = a/b

a = b0000000000000000000000000000000000000000000000000111111011001011
a = 0x0000000000007ecb
a = x14 + x13 + x12 + x11 + x10 + x9 + x7 + x6 + x3 + x + 1

b = b0000000000000000000000000000000000000000000000000011111101110010
b = 0x0000000000003f72
b = x13 + x12 + x11 + x10 + x9 + x8 + x6 + x5 + x4 + x

  111111011001011 | 11111101110010
- 11111101110010  | 1
  --------------- |
           101111 |
-  00000000000000 | 0

cquotient = b0000000000000000000000000000000000000000000000000000000000000010
cquotient = 0x0000000000000002
cquotient = x

cremainder = b0000000000000000000000000000000000000000000000000000000000101111
cremainder = 0x000000000000002f
cremainder = x5 + x3 + x2 + x + 1