mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-10 18:24:27 +08:00
Merge pull request #166 from jpclair/bugfix/dbg-string-correction-desfire
Spelling error (authetication instead of authentication)
This commit is contained in:
commit
6a710ef632
1 changed files with 4 additions and 4 deletions
|
@ -243,7 +243,7 @@ void MifareDES_Auth1(uint8_t mode, uint8_t algo, uint8_t keyno, uint8_t *datain
|
||||||
|
|
||||||
if ( resp[2] == 0xaf ){
|
if ( resp[2] == 0xaf ){
|
||||||
} else {
|
} else {
|
||||||
DbpString("Authetication failed. Invalid key number.");
|
DbpString("Authentication failed. Invalid key number.");
|
||||||
OnError(3);
|
OnError(3);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -310,7 +310,7 @@ void MifareDES_Auth1(uint8_t mode, uint8_t algo, uint8_t keyno, uint8_t *datain
|
||||||
rol(decRndA,8);
|
rol(decRndA,8);
|
||||||
for (int x = 0; x < 8; x++) {
|
for (int x = 0; x < 8; x++) {
|
||||||
if (decRndA[x] != encRndA[x]) {
|
if (decRndA[x] != encRndA[x]) {
|
||||||
DbpString("Authetication failed. Cannot varify PICC.");
|
DbpString("Authentication failed. Cannot varify PICC.");
|
||||||
OnError(4);
|
OnError(4);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -411,7 +411,7 @@ void MifareDES_Auth1(uint8_t mode, uint8_t algo, uint8_t keyno, uint8_t *datain
|
||||||
else if (algo == 1)
|
else if (algo == 1)
|
||||||
cmd_send(CMD_ACK,1,0,0,skey->data,8);
|
cmd_send(CMD_ACK,1,0,0,skey->data,8);
|
||||||
} else {
|
} else {
|
||||||
DbpString("Authetication failed.");
|
DbpString("Authentication failed.");
|
||||||
OnError(6);
|
OnError(6);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -482,7 +482,7 @@ void MifareDES_Auth1(uint8_t mode, uint8_t algo, uint8_t keyno, uint8_t *datain
|
||||||
Desfire_session_key_new( nonce, decRndB , key, skey );
|
Desfire_session_key_new( nonce, decRndB , key, skey );
|
||||||
print_result("SESSION : ", skey->data, 16);
|
print_result("SESSION : ", skey->data, 16);
|
||||||
} else {
|
} else {
|
||||||
DbpString("Authetication failed.");
|
DbpString("Authentication failed.");
|
||||||
OnError(7);
|
OnError(7);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue