File Coverage

blib/lib/Net/SSH/Perl/Util/SSH1Misc.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 14 14 100.0


line stmt bran cond sub pod time code
1             package Net::SSH::Perl::Util::SSH1Misc;
2 1     1   7 use strict;
  1         1  
  1         30  
3 1     1   6 use warnings;
  1         1  
  1         23  
4              
5 1     1   5 use String::CRC32;
  1         2  
  1         92  
6              
7             sub _crc32 {
8 10     10   56 crc32($_[0], 0xFFFFFFFF) ^ 0xFFFFFFFF;
9             }
10              
11             1;