Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions MD5.pm
Original file line number Diff line number Diff line change
@@ -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;
Expand Down