What is the difference between crc32 and crc32b?

前端 未结 3 409
渐次进展
渐次进展 2020-12-06 01:12

Apparently the PHP function hash() can be called with the algorithms crc32 and crc32b? What is the difference between them?

3条回答
  •  孤城傲影
    2020-12-06 01:32

    The difference between crc32 and crc32b is explained on mhash man page. crc32 is the one used on ethernet, while crc32b is the one used on zip, png... They differ on the table used.

    quote taken from php.net

提交回复
热议问题