|
|
Rank: Newbie Groups: Member
Joined: 1/4/2008 Posts: 2 Points: 6 Location: Romania
|
I don't get the difference between CRC32 and CRC32_bzip2. If anyone could please tell me what more calculation is done to CRC32 in order to become CRC32_bzip2.
|
|
 Rank: Administration Groups: Administration
, Member
Joined: 7/17/2007 Posts: 8 Points: 27 Location: Saint-Petersburg
|
Quote:what more calculation is done to CRC32 in order to become CRC32_bzip2 There aren't any more calculations, but different initial values.
|
|
Rank: Newbie Groups: Member
Joined: 1/4/2008 Posts: 2 Points: 6 Location: Romania
|
Could you tell me which is this initial value or is it private? Thank you.
|
|
 Rank: Administration Groups: Administration
, Member
Joined: 7/17/2007 Posts: 8 Points: 27 Location: Saint-Petersburg
|
Sorry for long delay with the reply. The initial values are:
// Name : "CRC-32 - bzip2" // String : "123456789" // Check : CBF43926
cm_width=32; cm_poly=0x04C11DB7; cm_init=0xFFFFFFFF; cm_refin=false; cm_refout=false; cm_xorout=0xFFFFFFFF; cm_reg=cm_init;
|
|
|
Guest |