in reply to Calculating the crc checksum of a file using perl?
I don't know if this suffices, but there is some less obvious extremely core way using unpack:
my $sum = unpack "%64A*", $string;See $ perldoc packtut for more details. (under the head "Doing sums)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Calculating the crc checksum of a file using perl?
by Anonymous Monk on Jul 09, 2011 at 15:13 UTC | |
|
Re^2: Calculating the crc checksum of a file using perl?
by Anonymous Monk on Jul 09, 2011 at 16:22 UTC |