From 0f6061c16f072372b7d4d381911f1542afbc3a69 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Fri, 11 Feb 2022 22:12:46 +0100 Subject: [PATCH] remove debug message --- common/generator.c | 1 - 1 file changed, 1 deletion(-) diff --git a/common/generator.c b/common/generator.c index b449beeac..4856327e2 100644 --- a/common/generator.c +++ b/common/generator.c @@ -177,7 +177,6 @@ uint32_t ul_ev1_pwdgenE(const uint8_t *uid) { uint32_t ul_ev1_pwdgenF(const uint8_t *uid) { uint8_t hash[16]; mbedtls_md5(uid, 7, hash); - PrintAndLogEx(INFO, "md5 %s", sprint_hex_inrow(hash, sizeof(hash))); uint32_t pwd = 0; pwd |= hash[0] << 24; pwd |= hash[1] << 16;