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

@@ -10,7 +10,7 @@ use warnings;
use Digest::MD5 qw (md5_hex);
sub module_constraints { [[0, 255], [0, 223], [0, 55], [0, 23], [-1, -1]] }
sub module_constraints { [[0, 256], [0, 223], [0, 55], [0, 23], [-1, -1]] }
sub module_generate_hash
{