Fix -m 21600 default hash length

This commit is contained in:
Jens Steube
2019-11-27 09:03:17 +01:00
parent a63aa679d3
commit 86d3f9e9c7
3 changed files with 8 additions and 23 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ sub module_generate_hash
my $word = shift;
my $salt = shift;
my $iterations = shift // 1000;
my $out_len = shift // 16;
my $out_len = shift // 20;
my $pbkdf2 = Crypt::PBKDF2->new
(