gf(2) mod

c = a % b

Calculate c = a/b, result is cremainder

gf(2) Polynomial long division

c = a/b

a = b0000000000000000000000000000000000000000000000000001011100010011
a = 0x0000000000001713
a = x12 + x10 + x9 + x8 + x4 + x + 1

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

  1011100010011 | 100001100111
- 100001100111  | 1
  ------------- |
    11111011101 |
-  000000000000 | 0

cquotient = b0000000000000000000000000000000000000000000000000000000000000010
cquotient = 0x0000000000000002
cquotient = x

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