1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-22 08:08:10 +00:00

Remove some debugging code from tools/test_modules/m26000.pm

This commit is contained in:
Jens Steube 2021-04-17 21:28:20 +02:00
parent ee7d8ef0e7
commit 35aa0911d1

View File

@ -57,17 +57,10 @@ sub module_generate_hash
$pt1 = exclusive_or ($pt1, $iv);
print unpack ("H*", $ct1_bin), "\n";
print unpack ("H*", $ct2_bin), "\n";
my $pt2 = $ede3->decrypt ($ct2_bin);
print unpack ("H*", $pt2), "\n";
$pt2 = exclusive_or ($pt2, $ct1_bin);
print unpack ("H*", $pt2), "\n";
$pt = $pt1 . $pt2;
if ($pt ne "password-check\x02\x02")