mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-22 06:13:51 -07:00
EM4x70 remove short command options from authentication.
This commit is contained in:
parent
701914430f
commit
89099cf1a1
1 changed files with 4 additions and 4 deletions
|
@ -252,14 +252,14 @@ int CmdEM4x70Auth(const char *Cmd) {
|
||||||
CLIParserInit(&ctx, "lf em 4x70 auth",
|
CLIParserInit(&ctx, "lf em 4x70 auth",
|
||||||
"Authenticate against an EM4x70 by sending random number (RN) and F(RN)\n"
|
"Authenticate against an EM4x70 by sending random number (RN) and F(RN)\n"
|
||||||
" If F(RN) is incorrect based on the tag crypt key, the tag will not respond",
|
" If F(RN) is incorrect based on the tag crypt key, the tag will not respond",
|
||||||
"lf em 4x70 auth -r 11223344556677 -f 11223344\n"
|
"lf em 4x70 auth --rnd 11223344556677 --frn 11223344\n"
|
||||||
);
|
);
|
||||||
|
|
||||||
void *argtable[] = {
|
void *argtable[] = {
|
||||||
arg_param_begin,
|
arg_param_begin,
|
||||||
arg_lit0("x", "par", "Add parity bit when sending commands"),
|
arg_lit0(NULL, "par", "Add parity bit when sending commands"),
|
||||||
arg_str1("r", "rnd", "<hex>", "Random 56-bit"),
|
arg_str1(NULL, "rnd", "<hex>", "Random 56-bit"),
|
||||||
arg_str1("f", "frn", "<hex>", "F(RN) 28-bit as 4 hex bytes"),
|
arg_str1(NULL, "frn", "<hex>", "F(RN) 28-bit as 4 hex bytes"),
|
||||||
arg_param_end
|
arg_param_end
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue