gf(2) mod

c = a % b

Calculate c = a/b, result is cremainder

gf(2) Polynomial long division

c = a/b

a = b0000000000000000000000000000000000000000000000000000100001100111
a = 0x0000000000000867
a = x11 + x6 + x5 + x2 + x + 1

b = b0000000000000000000000000000000000000000000000000000011111011101
b = 0x00000000000007dd
b = x10 + x9 + x8 + x7 + x6 + x4 + x3 + x2 + 1

  100001100111 | 11111011101
- 11111011101  | 1
  ------------ |
   11111011101 |
-  11111011101 | 1
  ------------ |
             0 |

cquotient = b0000000000000000000000000000000000000000000000000000000000000011
cquotient = 0x0000000000000003
cquotient = x + 1

cremainder = b0000000000000000000000000000000000000000000000000000000000000000
cremainder = 0x0000000000000000
cremainder = 0