mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 10:37:23 -07:00
fix bug in mfu cauth
This commit is contained in:
parent
92690507ab
commit
7eec1204e7
1 changed files with 2 additions and 2 deletions
|
@ -540,8 +540,8 @@ int CmdHF14AMfucAuth(const char *Cmd){
|
|||
}
|
||||
|
||||
uint8_t *key = default_3des_keys[keyNo];
|
||||
if (try3DesAuthentication(key))
|
||||
PrintAndLog("Authentication successful. 3des key: %s",sprint_hex(key, 8));
|
||||
if (try3DesAuthentication(key)>0)
|
||||
PrintAndLog("Authentication successful. 3des key: %s",sprint_hex(key, 16));
|
||||
else
|
||||
PrintAndLog("Authentication failed");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue