From 9969e23d9891d05b18dbff087c0fa540ee2b774a Mon Sep 17 00:00:00 2001 From: "Aaron Tulino (Aaronjamt)" Date: Mon, 22 Dec 2025 15:19:31 -0700 Subject: [PATCH] Remove debug messages --- client/src/cmdhfseos.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/client/src/cmdhfseos.c b/client/src/cmdhfseos.c index 19ae6ba0c..29953721a 100644 --- a/client/src/cmdhfseos.c +++ b/client/src/cmdhfseos.c @@ -863,12 +863,7 @@ static int select_ADF_decrypt(const char *selectADFOID, uint8_t *CRYPTOGRAM_encr create_cmac(keys[key_index].privMacKey, CRYPTOGRAM_encrypted_data_raw, mac, iv_size, sizeof(mac), encryption_algorithm); mac[0]++; if (memcmp(CRYPTOGRAM_encrypted_data_raw+iv_size, mac, iv_size) != 0) { - PrintAndLogEx(ERR, "MAC Verification Failed"); - - // PrintAndLogEx(ERR, "Synthesized IV................... "_YELLOW_("%s"), sprint_hex_inrow(CRYPTOGRAM_encrypted_data_raw,iv_size)); - // PrintAndLogEx(ERR, "Synthesized IV MAC............... "_YELLOW_("%s"), sprint_hex_inrow(CRYPTOGRAM_encrypted_data_raw+iv_size,iv_size)); - // PrintAndLogEx(ERR, "Synthesized IV Computed MAC...... "_YELLOW_("%s"), sprint_hex_inrow(mac,iv_size)); - + PrintAndLogEx(ERR, "MAC Verification Failed"); return PM3_ESOFT; }