From: Fl0-0 Date: Fri, 30 Jun 2017 12:50:32 +0000 (+0200) Subject: Indentation fix X-Git-Tag: v3.1.0~196^2~9 X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/1ccba0b91b5c7c3c05127622c945c1c937bf6a3e Indentation fix --- diff --git a/client/cmdlfem4x.c b/client/cmdlfem4x.c index cf20a96a..167042d7 100644 --- a/client/cmdlfem4x.c +++ b/client/cmdlfem4x.c @@ -306,11 +306,11 @@ int CmdEM410xBrute(const char *Cmd) int i, n, j, binary[4], parity[4]; char cmdp = param_getchar(Cmd, 0); - uint8_t uid[5] = {0x00}; + uint8_t uid[5] = {0x00}; - if (cmdp == 'h' || cmdp == 'H') return usage_lf_em410x_sim(); - /* clock is 64 in EM410x tags */ - uint8_t clock = 64; + if (cmdp == 'h' || cmdp == 'H') return usage_lf_em410x_sim(); + /* clock is 64 in EM410x tags */ + uint8_t clock = 64; param_getdec(Cmd,1, &clock); @@ -352,49 +352,48 @@ int CmdEM410xBrute(const char *Cmd) for (i = 0; i < 9; i++) AppendGraph(0, clock, 1); - /* for each hex char */ - parity[0] = parity[1] = parity[2] = parity[3] = 0; - for (i = 0; i < 10; i++) - { - /* read each hex char */ - sscanf(&buf[i], "%1x", &n); - for (j = 3; j >= 0; j--, n/= 2) - binary[j] = n % 2; - - /* append each bit */ - AppendGraph(0, clock, binary[0]); - AppendGraph(0, clock, binary[1]); - AppendGraph(0, clock, binary[2]); - AppendGraph(0, clock, binary[3]); - - /* append parity bit */ - AppendGraph(0, clock, binary[0] ^ binary[1] ^ binary[2] ^ binary[3]); - - /* keep track of column parity */ - parity[0] ^= binary[0]; - parity[1] ^= binary[1]; - parity[2] ^= binary[2]; - parity[3] ^= binary[3]; - } + /* for each hex char */ + parity[0] = parity[1] = parity[2] = parity[3] = 0; + for (i = 0; i < 10; i++){ + /* read each hex char */ + sscanf(&buf[i], "%1x", &n); + for (j = 3; j >= 0; j--, n/= 2) + binary[j] = n % 2; + + /* append each bit */ + AppendGraph(0, clock, binary[0]); + AppendGraph(0, clock, binary[1]); + AppendGraph(0, clock, binary[2]); + AppendGraph(0, clock, binary[3]); + + /* append parity bit */ + AppendGraph(0, clock, binary[0] ^ binary[1] ^ binary[2] ^ binary[3]); - /* parity columns */ - AppendGraph(0, clock, parity[0]); - AppendGraph(0, clock, parity[1]); - AppendGraph(0, clock, parity[2]); - AppendGraph(0, clock, parity[3]); + /* keep track of column parity */ + parity[0] ^= binary[0]; + parity[1] ^= binary[1]; + parity[2] ^= binary[2]; + parity[3] ^= binary[3]; + } + + /* parity columns */ + AppendGraph(0, clock, parity[0]); + AppendGraph(0, clock, parity[1]); + AppendGraph(0, clock, parity[2]); + AppendGraph(0, clock, parity[3]); - /* stop bit */ - AppendGraph(1, clock, 0); + /* stop bit */ + AppendGraph(1, clock, 0); - CmdLFSim("0"); //240 start_gap. + CmdLFSim("0"); //240 start_gap. - memset(buf, 0, sizeof(buf)); + memset(buf, 0, sizeof(buf)); - } + } - fclose(f); + fclose(f); - return 0; + return 0; }