From fef3a764ae856b806b2231cdf6556ae6f216eb1c Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Tue, 7 Jul 2020 15:36:51 +0200 Subject: [PATCH] chg: hf mf decrypt - helptext (thanks @AdamLaurie) --- client/src/cmdhfmf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/cmdhfmf.c b/client/src/cmdhfmf.c index c8ab85b14..1b458e6e0 100644 --- a/client/src/cmdhfmf.c +++ b/client/src/cmdhfmf.c @@ -307,13 +307,13 @@ static int usage_hf14_decryptbytes(void) { PrintAndLogEx(NORMAL, "Usage: hf mf decrypt [h] "); PrintAndLogEx(NORMAL, "Options:"); PrintAndLogEx(NORMAL, " h this help"); - PrintAndLogEx(NORMAL, " reader nonce"); + PrintAndLogEx(NORMAL, " tag nonce"); PrintAndLogEx(NORMAL, " encrypted reader response"); PrintAndLogEx(NORMAL, " encrypted tag response"); PrintAndLogEx(NORMAL, " encrypted data, taken directly after at_enc and forward"); PrintAndLogEx(NORMAL, "Examples:"); PrintAndLogEx(NORMAL, _YELLOW_(" hf mf decrypt b830049b 9248314a 9280e203 41e586f9")); - PrintAndLogEx(NORMAL, "\n this sample decrypts 41e586f9 -> 3003999a Annotated: 30 03 [99 9a] auth block 3 [crc]"); + PrintAndLogEx(NORMAL, "\n this sample decrypts 41e586f9 -> 3003999a Annotated: 30 03 [99 9a] read block 3 [crc]"); return PM3_SUCCESS; }