change parameter, we like shorter parameter names remember... 'hf mfu aesauth --idx'

This commit is contained in:
iceman1001 2025-06-17 18:26:23 +02:00
commit 7fa9f7bdfe
2 changed files with 5 additions and 5 deletions

View file

@ -3930,13 +3930,13 @@ static int CmdHF14AMfUAESAuth(const char *Cmd) {
" Key index 1... UIDRetrKey\n"
" Key index 2... OriginalityKey\n",
"hf mfu aesauth\n"
"hf mfu aesauth --key <16 hex bytes> --index <0..2>"
"hf mfu aesauth --key <16 hex bytes> --idx <0..2>"
);
void *argtable[] = {
arg_param_begin,
arg_str0(NULL, "key", "<hex>", "AES key (16 hex bytes)"),
arg_int0("i", "index", "<0..2>", "Key index, default: 0"),
arg_int0("i", "idx", "<0..2>", "Key index (def: 0)"),
arg_lit0("k", NULL, "Keep field on (only if a key is provided)"),
arg_param_end
};