File Coverage

blib/lib/Digest/MD2.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Digest::MD2;
2              
3 2     2   1521 use strict;
  2         5  
  2         82  
4 2     2   10 use vars qw($VERSION @ISA @EXPORT_OK);
  2         5  
  2         343  
5              
6             $VERSION = '2.04';
7              
8             require Exporter;
9             *import = \&Exporter::import;
10             @EXPORT_OK = qw(md2 md2_hex md2_base64);
11              
12             require DynaLoader;
13             @ISA=qw(DynaLoader);
14             Digest::MD2->bootstrap($VERSION);
15              
16             *reset = \&new;
17              
18             1;
19             __END__