gf(2) mod

c = a % b

Calculate c = a/b, result is cremainder

gf(2) Polynomial long division

c = a/b

a = b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010001000100
a = 0x00000000000000000000000000000444
a = x10 + x6 + x2

b = b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101
b = 0x00000000000000000000000000000005
b = x2 + 1

  10001000100 | 101
- 101         | 1
  ----------- |
    101000100 |
-  000        | 0
-   101       | 1
  ----------- |
          100 |
-    000      | 0
-     000     | 0
-      000    | 0
-       000   | 0
-        000  | 0
-         101 | 1
  ----------- |
            1 |

cquotient = b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101000001
cquotient = 0x00000000000000000000000000000141
cquotient = x8 + x6 + 1

cremainder = b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001
cremainder = 0x00000000000000000000000000000001
cremainder = 1