mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 21:03:48 -07:00
fix typos
This commit is contained in:
parent
d8281e69fd
commit
f0314562f7
2 changed files with 2 additions and 2 deletions
|
@ -840,7 +840,7 @@ int CmdHF14AMfDump(const char *Cmd) {
|
||||||
uint16_t numblocks = FirstBlockOfSector(numSectors - 1) + NumBlocksPerSector(numSectors - 1);
|
uint16_t numblocks = FirstBlockOfSector(numSectors - 1) + NumBlocksPerSector(numSectors - 1);
|
||||||
fwrite(carddata, 1, 16*numblocks, fout);
|
fwrite(carddata, 1, 16*numblocks, fout);
|
||||||
fclose(fout);
|
fclose(fout);
|
||||||
PrintAndLogEx(NORMAL, "[+} dumped %d blocks (%d bytes) to file %s", numblocks, 16*numblocks, dataFilename);
|
PrintAndLogEx(SUCCESS, "dumped %d blocks (%d bytes) to file %s", numblocks, 16*numblocks, dataFilename);
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -578,7 +578,7 @@ int testKeyDiversificationWithMasterkeyTestcases() {
|
||||||
int i;
|
int i;
|
||||||
uint8_t empty[8]={0};
|
uint8_t empty[8]={0};
|
||||||
|
|
||||||
PrintfAndLog("[+} Testing encryption/decryption");
|
PrintfAndLog("[+] Testing encryption/decryption");
|
||||||
|
|
||||||
for (i = 0; memcmp(testcases+i, empty, 8); i++)
|
for (i = 0; memcmp(testcases+i, empty, 8); i++)
|
||||||
error += testDES(testcases[i], ctx_enc, ctx_dec);
|
error += testDES(testcases[i], ctx_enc, ctx_dec);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue