From f5d8ba322539e7eb8fcf6f37ed9804f8e71b9338 Mon Sep 17 00:00:00 2001 From: Antiklesys Date: Mon, 30 Sep 2024 15:08:58 +0800 Subject: [PATCH] Update ikeys.c Fixed comments and removed commented lines Signed-off-by: Antiklesys --- client/src/loclass/ikeys.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/client/src/loclass/ikeys.c b/client/src/loclass/ikeys.c index 094d864d9..465023371 100644 --- a/client/src/loclass/ikeys.c +++ b/client/src/loclass/ikeys.c @@ -619,11 +619,10 @@ void invert_hash0(uint8_t k[8]) { if(image_match){ PrintAndLogEx(INFO, _GREEN_("Valid pre-image: ")_YELLOW_("%s"), sprint_hex(des_pre_image, sizeof(des_pre_image))); }else if (!image_match && g_debugMode > 0){ - //}else if (!image_match){ //debug only PrintAndLogEx(INFO, _RED_("Invalid pre-image: %s"), sprint_hex(des_pre_image, sizeof(des_pre_image))); } - // Free allocated memory } + // Free allocated memory free(hydra_heads); } }