Hi,
it's just necessary to find the right combination of TOT, TOTR and FXOR bit fields.
For CRC-32, use:
TOT = 0b01, TOTR = 0b10, FXOR = 0b1
or
TOT = 0b10, TOTR = 0b10, FXOR = 0b1
For CRC-32/BZIP2, use:
TOT = 0b00, TOTR = 0b00, FXOR = 0b1
or
TOT = 0b11, TOTR = 0b00, FXOR = 0b1
Frankly, I didn't have time to study the differences between individual algorithms, so I used brutal force method which was faster - I wrote simple code which tries all the combinations and then I compared the results...
Hope it helps anyway...
Regards,
Lukas