diff --git a/MD5.pm b/MD5.pm index bc0fec7..42ce730 100644 --- a/MD5.pm +++ b/MD5.pm @@ -1,13 +1,12 @@ package Digest::MD5; use strict; -use vars qw($VERSION @ISA @EXPORT_OK); -$VERSION = '2.55'; +use Exporter qw(import); -require Exporter; -*import = \&Exporter::import; -@EXPORT_OK = qw(md5 md5_hex md5_base64); +our $VERSION = '2.55'; +our @EXPORT_OK = qw(md5 md5_hex md5_base64); +our @ISA; eval { require Digest::base;