gf(2) mod

c = a % b

Calculate c = a/b, result is cremainder

gf(2) Polynomial long division

c = a/b

a = b0000000000000000000000000000000000000000000000000000001001001100
a = 0x000000000000024c
a = x9 + x6 + x3 + x2

b = b0000000000000000000000000000000000000000000000000000000100001001
b = 0x0000000000000109
b = x8 + x3 + 1

  1001001100 | 100001001
- 100001001  | 1
  ---------- |
     1011110 |
-  000000000 | 0

cquotient = b0000000000000000000000000000000000000000000000000000000000000010
cquotient = 0x0000000000000002
cquotient = x

cremainder = b0000000000000000000000000000000000000000000000000000000001011110
cremainder = 0x000000000000005e
cremainder = x6 + x4 + x3 + x2 + x