From 1a34eba9f4fdcec9594bd0359b2a2ea173d0b042 Mon Sep 17 00:00:00 2001 From: Gabriele Gristina Date: Sun, 4 Jul 2021 15:52:25 +0200 Subject: [PATCH] cleanup m26600.pm --- tools/test_modules/m26600.pm | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tools/test_modules/m26600.pm b/tools/test_modules/m26600.pm index d28e5ae94..7b41ff2b7 100644 --- a/tools/test_modules/m26600.pm +++ b/tools/test_modules/m26600.pm @@ -89,8 +89,6 @@ sub module_verify_hash my (undef, $signature, $salt, $iv, $ct) = split '\$', $hash; -printf "AAAA"; - return unless defined $signature; return unless defined $salt; return unless defined $iv; @@ -100,14 +98,10 @@ printf "AAAA"; my $iv_bin = decode_base64 ($iv); my $ct_bin = decode_base64 ($ct); -printf "BBBB"; - return unless length $salt_bin == 32; return unless length $iv_bin == 16; return unless length $ct_bin == 185; -printf "CCCC"; - my $word_packed = pack_if_HEX_notation ($word); my $new_hash = module_generate_hash ($word_packed, unpack ("H*", $salt_bin), unpack ("H*", $iv_bin), unpack ("H*", $ct_bin));