Update ikeys.c

Fixed comments and removed commented lines

Signed-off-by: Antiklesys <syselkitna@gmail.com>
This commit is contained in:
Antiklesys 2024-09-30 15:08:58 +08:00 committed by GitHub
commit f5d8ba3225
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -619,11 +619,10 @@ void invert_hash0(uint8_t k[8]) {
if(image_match){ if(image_match){
PrintAndLogEx(INFO, _GREEN_("Valid pre-image: ")_YELLOW_("%s"), sprint_hex(des_pre_image, sizeof(des_pre_image))); 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 && 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))); 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); free(hydra_heads);
} }
} }