gf(2) mod

c = a % b

Calculate c = a/b, result is cremainder

gf(2) Polynomial long division

c = a/b

a = b0000000000000000000000000000000000000000000000100110101110101010
a = 0x0000000000026baa
a = x17 + x14 + x13 + x11 + x9 + x8 + x7 + x5 + x3 + x

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

  100110101110101010 | 1011100010011
- 1011100010011      | 1
  ------------------ |
    1000100111001010 |
-  0000000000000     | 0
-   1011100010011    | 1
  ------------------ |
      11000101010010 |
-    0000000000000   | 0
-     1011100010011  | 1
  ------------------ |
       1111101110100 |
-      1011100010011 | 1
  ------------------ |
        100001100111 |

cquotient = b0000000000000000000000000000000000000000000000000000000000101011
cquotient = 0x000000000000002b
cquotient = x5 + x3 + x + 1

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