in reply to Re: Calculating the crc checksum of a file using perl?
in thread Calculating the crc checksum of a file using perl?
As far as I know, what unpack does with "%" flag is just suming up the values and then modulate. CRC algorithm uses polynomial division and bitwise shifting instead of just summing things up, so I think they are quite different.