1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
|
package Digest::CRC;
use strict;
use vars qw($VERSION $XS_VERSION @ISA @EXPORT_OK %_typedef);
require Exporter;
@ISA = qw(Exporter);
@EXPORT_OK = qw(
crc8 crcccitt crc16 crc32 crc
crc_hex crc_base64
crcccitt_hex crcccitt_base64
crc8_hex crc8_base64
crc16_hex crc16_base64
crc32_hex crc32_base64
);
$VERSION = '0.09';
$XS_VERSION = $VERSION;
$VERSION = eval $VERSION;
eval {
# PERL_DL_NONLAZY must be false, or any errors in loading will just
# cause the perl code to be tested
local $ENV{PERL_DL_NONLAZY} = 0 if $ENV{PERL_DL_NONLAZY};
require DynaLoader;
local @ISA = qw(DynaLoader);
bootstrap Digest::CRC $XS_VERSION;
1
};
# Only load the non-XS stuff on demand
defined &_crc or eval <<'ENOXS';
sub _reflect {
my ($in, $width) = @_;
my $out = 0;
for(my $i=1; $i < ($width+1); $i++) {
$out |= 1 << ($width-$i) if ($in & 1);
$in=$in>>1;
}
$out;
}
sub _tabinit {
my ($width,$poly_in,$ref) = @_;
my @crctab;
my $poly = $poly_in;
if ($ref) {
$poly = _reflect($poly,$width);
}
for (my $i=0; $i<256; $i++) {
my $r = $i<<($width-8);
$r = $i if $ref;
for (my $j=0; $j<8; $j++) {
if ($ref) {
$r = ($r>>1)^($r&1&&$poly)
} else {
if ($r&(1<<($width-1))) {
$r = ($r<<1)^$poly
} else {
$r = ($r<<1)
}
}
}
push @crctab, $r&2**$width-1;
}
\@crctab;
}
sub _crc {
my ($message,$width,$init,$xorout,$refin,$refout,$tab) = @_;
my $crc = $init;
$crc = _reflect($crc,$width) if $refin;
my $pos = -length $message;
my $mask = 2**$width-1;
while ($pos) {
if ($refin) {
$crc = ($crc>>8)^$tab->[($crc^ord(substr($message, $pos++, 1)))&0xff]
} else {
$crc = (($crc<<8))^$tab->[(($crc>>($width-8))^ord(substr $message,$pos++,1))&0xff]
}
}
if ($refout^$refin) {
$crc = _reflect($crc,$width);
}
$crc = $crc ^ $xorout;
$crc & $mask;
}
ENOXS
%_typedef = (
# name, [width,init,xorout,refout,poly,refin);
crc8 => [8,0,0,0,0x07,0],
crcccitt => [16,0xffff,0,0,0x1021,0],
crc16 => [16,0,0,1,0x8005,1],
crc32 => [32,0xffffffff,0xffffffff,1,0x04C11DB7,1],
);
sub new {
my $that=shift;
my %params=@_;
my $class = ref($that) || $that;
my $self = {map { ($_ => $params{$_}) }
qw(type width init xorout poly refin refout)};
bless $self, $class;
$self->reset();
$self
}
sub reset {
my $self = shift;
my $typeparams;
# default is crc32 if no type and no width is defined
if (!defined($self->{type}) && !defined($self->{width})) {
$self->{type} = "crc32";
}
if (defined($self->{type}) && exists($_typedef{$self->{type}})) {
$typeparams = $_typedef{$self->{type}};
$self->{width} = $typeparams->[0],
$self->{init} = $typeparams->[1],
$self->{xorout} = $typeparams->[2],
$self->{refout} = $typeparams->[3],
$self->{poly} = $typeparams->[4],
$self->{refin} = $typeparams->[5],
}
$self->{_tab} = _tabinit($self->{width}, $self->{poly}, $self->{refin});
delete $self->{_data};
$self
}
#########################################
# Private output converter functions:
sub _encode_hex { sprintf "%x", $_[0] }
sub _encode_base64 {
my $res;
while ($_[0] =~ /(.{1,45})/gs) {
$res .= substr pack('u', $1), 1;
chop $res;
}
$res =~ tr|` -_|AA-Za-z0-9+/|;#`
chop $res; chop $res;
$res
}
#########################################
# OOP interface:
sub add {
my $self = shift;
$self->{_data} .= join '', @_ if @_;
$self
}
sub addfile {
my ($self,$fh) = @_;
if (!ref($fh) && ref(\$fh) ne "GLOB") {
require Symbol;
$fh = Symbol::qualify($fh, scalar caller);
}
# $self->{_data} .= do{local$/;<$fh>};
my $read = 0;
my $buffer = '';
$self->add($buffer) while $read = read $fh, $buffer, 8192;
die __PACKAGE__, " read failed: $!" unless defined $read;
$self
}
sub add_bits {
}
sub digest {
my $self = shift;
_crc($self->{_data},$self->{width},$self->{init},$self->{xorout},
$self->{refin},$self->{refout},$self->{_tab});
}
sub hexdigest {
_encode_hex($_[0]->digest)
}
sub b64digest {
_encode_base64($_[0]->digest)
}
sub clone {
my $self = shift;
my $clone = {
type => $self->{type},
width => $self->{width},
init => $self->{init},
xorout => $self->{xorout},
poly => $self->{poly},
refin => $self->{refin},
refout => $self->{refout}
};
bless $clone, ref $self || $self;
}
#########################################
# Procedural interface:
sub crc {
my ($message,$width,$init,$xorout,$refout,$poly,$refin) = @_;
_crc($message,$width,$init,$xorout,$refin,$refout,_tabinit($width,$poly,$refin));
}
# CRC8
# poly: 07, width: 8, init: 00, revin: no, revout: no, xorout: no
sub crc8 { crc($_[0],@{$_typedef{crc8}}) }
# CRC-CCITT standard
# poly: 1021, width: 16, init: ffff, refin: no, refout: no, xorout: no
sub crcccitt { crc($_[0],@{$_typedef{crcccitt}}) }
# CRC16
# poly: 8005, width: 16, init: 0000, revin: yes, revout: yes, xorout: no
sub crc16 { crc($_[0],@{$_typedef{crc16}}) }
# CRC32
# poly: 04C11DB7, width: 32, init: FFFFFFFF, revin: yes, revout: yes,
# xorout: FFFFFFFF
# equivalent to: cksum -o3
sub crc32 { crc($_[0],@{$_typedef{crc32}}) }
sub crc_hex { _encode_hex &crc }
sub crc_base64 { _encode_base64 &crc }
sub crc8_hex { _encode_hex &crc8 }
sub crc8_base64 { _encode_base64 &crc8 }
sub crcccitt_hex { _encode_hex &crcccitt }
sub crcccitt_base64 { _encode_base64 &crcccitt }
sub crc16_hex { _encode_hex &crc16 }
sub crc16_base64 { _encode_base64 &crc16 }
sub crc32_hex { _encode_hex &crc32 }
sub crc32_base64 { _encode_base64 &crc32 }
1;
__END__
=head1 NAME
Digest::CRC - Generic CRC functions
=head1 SYNOPSIS
# Functional style
use Digest::CRC qw(crc32 crc16 crcccitt crc crc8);
$crc = crc32("123456789");
$crc = crc16("123456789");
$crc = crcccitt("123456789");
$crc = crc8("123456789");
$crc = crc($input,$width,$init,$xorout,$refout,$poly,$refin);
# OO style
use Digest::CRC;
$ctx = Digest::CRC->new(type=>"crc16");
$ctx = Digest::CRC->new(width=>16, init=>0x0000, xorout=>0x0000,
poly=>0x8005, refin=>1, refout=>1);
$ctx->add($data);
$ctx->addfile(*FILE);
$digest = $ctx->digest;
$digest = $ctx->hexdigest;
$digest = $ctx->b64digest;
=head1 DESCRIPTION
The B<Digest::CRC> module calculates CRC sums of all sorts.
It contains wrapper functions with the correct parameters for CRC-CCITT,
CRC-16 and CRC-32.
=head1 AUTHOR
Oliver Maul, oli@42.nu
=head1 COPYRIGHT
CRC algorithm code taken from "A PAINLESS GUIDE TO CRC ERROR DETECTION
ALGORITHMS".
The author of this package disclaims all copyrights and
releases it into the public domain.
=cut
|