mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 21:03:48 -07:00
style
This commit is contained in:
parent
2137284a93
commit
06a1627a95
5 changed files with 47 additions and 47 deletions
|
@ -239,11 +239,11 @@ int CLIParserParseStringEx(CLIParserContext *ctx, const char *str, void *vargtab
|
|||
} else {
|
||||
|
||||
// if (isSpace(str[i]) == false) {
|
||||
*bufptr++ = str[i];
|
||||
*bufptr++ = str[i];
|
||||
// }
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (bufptr > bufptrend) {
|
||||
|
|
|
@ -1228,57 +1228,57 @@ static int CmdExchangeAPDU(bool chainingin, const uint8_t *datain, int datainlen
|
|||
return PM3_EAPDU_FAIL;
|
||||
}
|
||||
|
||||
const uint8_t *recv = resp.data.asBytes;
|
||||
int iLen = resp.oldarg[0];
|
||||
uint8_t res = resp.oldarg[1];
|
||||
const uint8_t *recv = resp.data.asBytes;
|
||||
int iLen = resp.oldarg[0];
|
||||
uint8_t res = resp.oldarg[1];
|
||||
|
||||
int dlen = iLen - 2;
|
||||
int dlen = iLen - 2;
|
||||
if (dlen < 0) {
|
||||
dlen = 0;
|
||||
dlen = 0;
|
||||
}
|
||||
*dataoutlen += dlen;
|
||||
*dataoutlen += dlen;
|
||||
|
||||
if (maxdataoutlen && *dataoutlen > maxdataoutlen) {
|
||||
PrintAndLogEx(DEBUG, "ERR: APDU: Buffer too small(%d), needs %d bytes", *dataoutlen, maxdataoutlen);
|
||||
return PM3_EAPDU_FAIL;
|
||||
}
|
||||
if (maxdataoutlen && *dataoutlen > maxdataoutlen) {
|
||||
PrintAndLogEx(DEBUG, "ERR: APDU: Buffer too small(%d), needs %d bytes", *dataoutlen, maxdataoutlen);
|
||||
return PM3_EAPDU_FAIL;
|
||||
}
|
||||
|
||||
// I-block ACK
|
||||
if ((res & 0xF2) == 0xA2) {
|
||||
*dataoutlen = 0;
|
||||
*chainingout = true;
|
||||
return PM3_SUCCESS;
|
||||
}
|
||||
// I-block ACK
|
||||
if ((res & 0xF2) == 0xA2) {
|
||||
*dataoutlen = 0;
|
||||
*chainingout = true;
|
||||
return PM3_SUCCESS;
|
||||
}
|
||||
|
||||
if (iLen == 0) {
|
||||
PrintAndLogEx(DEBUG, "ERR: APDU: No APDU response");
|
||||
return PM3_EAPDU_FAIL;
|
||||
}
|
||||
PrintAndLogEx(DEBUG, "ERR: APDU: No APDU response");
|
||||
return PM3_EAPDU_FAIL;
|
||||
}
|
||||
|
||||
// check apdu length
|
||||
if (iLen < 2 && iLen >= 0) {
|
||||
PrintAndLogEx(DEBUG, "ERR: APDU: Small APDU response, len %d", iLen);
|
||||
return PM3_EAPDU_FAIL;
|
||||
}
|
||||
// check apdu length
|
||||
if (iLen < 2 && iLen >= 0) {
|
||||
PrintAndLogEx(DEBUG, "ERR: APDU: Small APDU response, len %d", iLen);
|
||||
return PM3_EAPDU_FAIL;
|
||||
}
|
||||
|
||||
// check block TODO
|
||||
if (iLen == -2) {
|
||||
PrintAndLogEx(DEBUG, "ERR: APDU: Block type mismatch");
|
||||
return PM3_EAPDU_FAIL;
|
||||
}
|
||||
// check block TODO
|
||||
if (iLen == -2) {
|
||||
PrintAndLogEx(DEBUG, "ERR: APDU: Block type mismatch");
|
||||
return PM3_EAPDU_FAIL;
|
||||
}
|
||||
|
||||
memcpy(dataout, recv, dlen);
|
||||
memcpy(dataout, recv, dlen);
|
||||
|
||||
// chaining
|
||||
if ((res & 0x10) != 0) {
|
||||
*chainingout = true;
|
||||
}
|
||||
// chaining
|
||||
if ((res & 0x10) != 0) {
|
||||
*chainingout = true;
|
||||
}
|
||||
|
||||
// CRC Check
|
||||
if (iLen == -1) {
|
||||
PrintAndLogEx(DEBUG, "ERR: APDU: ISO 14443A CRC error");
|
||||
return PM3_EAPDU_FAIL;
|
||||
}
|
||||
// CRC Check
|
||||
if (iLen == -1) {
|
||||
PrintAndLogEx(DEBUG, "ERR: APDU: ISO 14443A CRC error");
|
||||
return PM3_EAPDU_FAIL;
|
||||
}
|
||||
|
||||
return PM3_SUCCESS;
|
||||
}
|
||||
|
|
|
@ -464,7 +464,7 @@ int applyIso14443a(char *exp, size_t size, uint8_t *cmd, uint8_t cmdsize, bool i
|
|||
} else {
|
||||
return PM3_ESOFT;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
} else {
|
||||
|
@ -1798,7 +1798,7 @@ void annotateSeos(char *exp, size_t size, uint8_t *cmd, uint8_t cmdsize, bool is
|
|||
default: {
|
||||
pos = 2;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (memcmp(cmd + pos, "\x00\xA4\x04\x00", 4) == 0) {
|
||||
|
|
|
@ -1305,7 +1305,7 @@ int detect_num_CPUs(void) {
|
|||
void str_lower(char *s) {
|
||||
for (size_t i = 0; i < strlen(s); i++) {
|
||||
s[i] = tolower(s[i]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void str_upper(char *s) {
|
||||
|
@ -1315,7 +1315,7 @@ void str_upper(char *s) {
|
|||
void strn_upper(char *s, size_t n) {
|
||||
for (size_t i = 0; i < n; i++) {
|
||||
s[i] = toupper(s[i]);
|
||||
}
|
||||
}
|
||||
}
|
||||
// check for prefix in string
|
||||
bool str_startswith(const char *s, const char *pre) {
|
||||
|
@ -1352,9 +1352,9 @@ void str_creplace(char *buf, size_t len, char from, char to) {
|
|||
for (size_t i = 0; i < len; i++) {
|
||||
if (buf[i] == from) {
|
||||
buf[i] = to;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
char *str_dup(const char *src) {
|
||||
return str_ndup(src, strlen(src));
|
||||
|
|
|
@ -13232,6 +13232,6 @@
|
|||
"metadata": {
|
||||
"commands_extracted": 760,
|
||||
"extracted_by": "PM3Help2JSON v1.00",
|
||||
"extracted_on": "2025-03-12T08:23:41"
|
||||
"extracted_on": "2025-03-12T15:46:33"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue