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
+1 -1
View File
@@ -11,7 +11,7 @@ use warnings;
use Digest::SHA qw (sha512);
use Digest::HMAC qw (hmac_hex);
sub module_constraints { [[0, 255], [0, 255], [0, 55], [0, 55], [-1, -1]] }
sub module_constraints { [[0, 256], [0, 256], [0, 55], [0, 55], [-1, -1]] }
sub module_generate_hash
{