diff options
Diffstat (limited to 'lib/Fripost')
-rwxr-xr-x | lib/Fripost/Password.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Fripost/Password.pm b/lib/Fripost/Password.pm index 595502d..53a10f7 100755 --- a/lib/Fripost/Password.pm +++ b/lib/Fripost/Password.pm @@ -77,7 +77,7 @@ sub hash ($$$) { sub is_salted { return ( not ( defined $_[0] ) or $_[0] ne '' ) }; -# Generate (random) salt, with a (random) length of 23 to 31 bytes. +# Generate (random) salt, with a (random) length of 24 to 31 bytes. sub make_salt { my $len = 31 - int( rand(8) ); my @bytes = (); |