Skip to content

Commit

Permalink
Tidied
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyA committed Jun 17, 2009
1 parent 3c32157 commit b4be4cb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions MD6.pm
Expand Up @@ -34,15 +34,15 @@ BEGIN {
push @EXPORT_OK, "md6_${l}", "md6_${l}_hex", "md6_${l}_base64";
*{"md6_${l}"} = sub {
local $Digest::MD6::HASH_LENGTH = $l;
md6(@_);
md6( @_ );
};
*{"md6_${l}_hex"} = sub {
local $Digest::MD6::HASH_LENGTH = $l;
md6_hex(@_);
md6_hex( @_ );
};
*{"md6_${l}_base64"} = sub {
local $Digest::MD6::HASH_LENGTH = $l;
md6_base64(@_);
md6_base64( @_ );
};
}
}
Expand Down

0 comments on commit b4be4cb

Please sign in to comment.