Fixed maximum password length limit which was announced as 256 but actually was 255

This commit is contained in:
jsteube
2019-02-26 21:20:07 +01:00
parent f63762e597
commit 5da1e4b872
425 changed files with 775 additions and 776 deletions

View File

@@ -12,7 +12,7 @@ use Crypt::PBKDF2;
use Digest::HMAC qw (hmac_hex);
use Digest::SHA qw (sha1);
sub module_constraints { [[0, 255], [32, 32], [-1, -1], [-1, -1], [-1, -1]] }
sub module_constraints { [[0, 256], [32, 32], [-1, -1], [-1, -1], [-1, -1]] }
sub module_generate_hash
{