gf(2) mod

c = a % b

Calculate c = a/b, result is cremainder

gf(2) Polynomial long division

c = a/b

a = b0000000000000000000000000000000000000000000000010001000100000100
a = 0x0000000000011104
a = x16 + x12 + x8 + x2

b = b0000000000000000000000000000000000000000000000000001010000010101
b = 0x0000000000001415
b = x12 + x10 + x4 + x2 + 1

  10001000100000100 | 1010000010101
- 1010000010101     | 1
  ----------------- |
    101000001010100 |
-  0000000000000    | 0
-   1010000010101   | 1
  ----------------- |
                  0 |
-    0000000000000  | 0
-     0000000000000 | 0

cquotient = b0000000000000000000000000000000000000000000000000000000000010100
cquotient = 0x0000000000000014
cquotient = x4 + x2

cremainder = b0000000000000000000000000000000000000000000000000000000000000000
cremainder = 0x0000000000000000
cremainder = 0