aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Fripost/Password.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Fripost/Password.pm')
-rwxr-xr-xlib/Fripost/Password.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Fripost/Password.pm b/lib/Fripost/Password.pm
index 53a10f7..fc1f7ce 100755
--- a/lib/Fripost/Password.pm
+++ b/lib/Fripost/Password.pm
@@ -33,9 +33,9 @@ our @ISA = qw(Exporter);
# CRYPT - since it requires salt).
# If `$salt' is `undef', the salt is automatically generated, using the
# subroutine `&make_salt' below.
-sub hash ($$$) {
+sub hash {
- my ($h, $salt, $pw) = @_;
+ my ($pw, $h, $salt) = @_;
$h //= SHA1;
# Treat the schemes that don't use Digest::.. separetely.