mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 13:23:51 -07:00
Syntax suger
This commit is contained in:
parent
9965e0d1f8
commit
222bdb1cb3
1 changed files with 3 additions and 3 deletions
|
@ -1005,9 +1005,9 @@ int CmdHF14AMfNestedHard(const char *Cmd) {
|
||||||
trgBlockNo,
|
trgBlockNo,
|
||||||
trgKeyType?'B':'A',
|
trgKeyType?'B':'A',
|
||||||
trgkey[0], trgkey[1], trgkey[2], trgkey[3], trgkey[4], trgkey[5],
|
trgkey[0], trgkey[1], trgkey[2], trgkey[3], trgkey[4], trgkey[5],
|
||||||
know_target_key?"":" (not set)",
|
know_target_key ? "" : " (not set)",
|
||||||
nonce_file_write?"write":nonce_file_read?"read":"none",
|
nonce_file_write ? "write": nonce_file_read ? "read" : "none",
|
||||||
slow?"Yes":"No",
|
slow ? "Yes" : "No",
|
||||||
tests);
|
tests);
|
||||||
|
|
||||||
int16_t isOK = mfnestedhard(blockNo, keyType, key, trgBlockNo, trgKeyType, know_target_key?trgkey:NULL, nonce_file_read, nonce_file_write, slow, tests);
|
int16_t isOK = mfnestedhard(blockNo, keyType, key, trgBlockNo, trgKeyType, know_target_key?trgkey:NULL, nonce_file_read, nonce_file_write, slow, tests);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue