gf(2) mod

c = a % b

Calculate c = a/b, result is cremainder

gf(2) Polynomial long division

c = a/b

a = b00000000000000010000000000000000
a = 0x00010000
a = x16

b = b00000000000000000000011111011101
b = 0x000007dd
b = x10 + x9 + x8 + x7 + x6 + x4 + x3 + x2 + 1

  10000000000000000 | 11111011101
- 11111011101       | 1
  ----------------- |
   1111011101000000 |
-  11111011101      | 1
  ----------------- |
       110011100000 |
-   00000000000     | 0
-    00000000000    | 0
-     00000000000   | 0
-      11111011101  | 1
  ----------------- |
         1101011010 |
-       00000000000 | 0

cquotient = b00000000000000000000000001100010
cquotient = 0x00000062
cquotient = x6 + x5 + x

cremainder = b00000000000000000000001101011010
cremainder = 0x0000035a
cremainder = x9 + x8 + x6 + x4 + x3 + x