mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-20 21:33:19 -07:00
small fix and added line to changelog.
This commit is contained in:
parent
868deeb783
commit
079563a092
2 changed files with 4 additions and 2 deletions
|
@ -325,11 +325,12 @@ void annotateMifare(char *exp, size_t size, uint8_t* cmd, uint8_t cmdsize, uint8
|
|||
if (cmdsize == 4 && isResponse) {
|
||||
snprintf(exp,size,"AUTH: nt %s", (AuthData.first_auth) ? "" : "(enc)");
|
||||
MifareAuthState = masNrAr;
|
||||
if (AuthData.first_auth)
|
||||
if (AuthData.first_auth) {
|
||||
AuthData.nt = bytes_to_num(cmd, 4);
|
||||
else
|
||||
} else {
|
||||
AuthData.nt_enc = bytes_to_num(cmd, 4);
|
||||
AuthData.nt_enc_par = parity[0];
|
||||
}
|
||||
return;
|
||||
} else {
|
||||
MifareAuthState = masError;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue