Fix password candidate generation for test.pl for mode 14000 and 14100

pull/1142/head
jsteube 7 years ago
parent 72edd17481
commit a509221868

@ -8069,6 +8069,11 @@ sub rnd
{
my $c = get_random_chr (0x30, 0x39);
if (($mode == 14000) || ($mode == 14100))
{
$c &= 0xfe;
}
push (@word_arr, $c);
}

Loading…
Cancel
Save