Bring back comparison of hashlist in crackfile

This commit is contained in:
jsteube
2018-12-27 15:49:18 +01:00
parent 97fc147aec
commit 7538e82b72
19 changed files with 76 additions and 39 deletions

View File

@@ -31,9 +31,11 @@ sub module_verify_hash
return unless defined $hash;
return unless defined $word;
$word = pack_if_HEX_notation ($word);
my $word_packed = pack_if_HEX_notation ($word);
return module_generate_hash ($word);
my $new_hash = module_generate_hash ($word_packed);
return ($new_hash, $word);
}
1;