]>
Commit | Line | Data |
---|---|---|
20f9a2a1 M |
1 | //----------------------------------------------------------------------------- |
2 | // Copyright (C) 2010 iZsh <izsh at fail0verflow.com> | |
3 | // | |
4 | // This code is licensed to you under the terms of the GNU GPL, version 2 or, | |
5 | // at your option, any later version. See the LICENSE.txt file for the text of | |
6 | // the license. | |
7 | //----------------------------------------------------------------------------- | |
8 | // utilities | |
9 | //----------------------------------------------------------------------------- | |
10 | ||
11 | #include "util.h" | |
c805748f | 12 | #include "proxmark3.h" |
bf32dd92 | 13 | #define MAX_BIN_BREAK_LENGTH (3072+384+1) |
534983d7 | 14 | |
cb64309e | 15 | #ifndef _WIN32 |
873014de M |
16 | #include <termios.h> |
17 | #include <sys/ioctl.h> | |
79544b28 | 18 | |
f397b5cc M |
19 | int ukbhit(void) |
20 | { | |
21 | int cnt = 0; | |
22 | int error; | |
23 | static struct termios Otty, Ntty; | |
24 | ||
d04b71c1 | 25 | if ( tcgetattr( 0, &Otty) == -1) return -1; |
f397b5cc M |
26 | Ntty = Otty; |
27 | ||
d04b71c1 | 28 | Ntty.c_iflag = 0; /* input mode */ |
29 | Ntty.c_oflag = 0; /* output mode */ | |
30 | Ntty.c_lflag &= ~ICANON; /* raw mode */ | |
31 | Ntty.c_cc[VMIN] = CMIN; /* minimum time to wait */ | |
32 | Ntty.c_cc[VTIME] = CTIME; /* minimum characters to wait for */ | |
f397b5cc M |
33 | |
34 | if (0 == (error = tcsetattr(0, TCSANOW, &Ntty))) { | |
35 | error += ioctl(0, FIONREAD, &cnt); | |
36 | error += tcsetattr(0, TCSANOW, &Otty); | |
37 | } | |
38 | ||
39 | return ( error == 0 ? cnt : -1 ); | |
40 | } | |
41 | ||
42 | #else | |
43 | #include <conio.h> | |
44 | int ukbhit(void) { | |
45 | return kbhit(); | |
46 | } | |
47 | #endif | |
48 | ||
55acbb2a | 49 | // log files functions |
b915fda3 | 50 | void AddLogLine(char *file, char *extData, char *c) { |
c805748f | 51 | FILE *f = NULL; |
b915fda3 | 52 | char filename[FILE_PATH_SIZE] = {0x00}; |
53 | int len = 0; | |
54 | ||
55 | len = strlen(file); | |
56 | if (len > FILE_PATH_SIZE) len = FILE_PATH_SIZE; | |
57 | memcpy(filename, file, len); | |
58 | ||
c805748f | 59 | f = fopen(filename, "a"); |
60 | if (!f) { | |
b915fda3 | 61 | printf("Could not append log file %s", filename); |
55acbb2a M |
62 | return; |
63 | } | |
64 | ||
c805748f | 65 | fprintf(f, "%s", extData); |
66 | fprintf(f, "%s\n", c); | |
67 | fflush(f); | |
68 | fclose(f); | |
55acbb2a M |
69 | } |
70 | ||
71 | void AddLogHex(char *fileName, char *extData, const uint8_t * data, const size_t len){ | |
72 | AddLogLine(fileName, extData, sprint_hex(data, len)); | |
73 | } | |
74 | ||
75 | void AddLogUint64(char *fileName, char *extData, const uint64_t data) { | |
c805748f | 76 | char buf[20] = {0}; |
77 | memset(buf, 0x00, sizeof(buf)); | |
78 | //sprintf(buf, "%X%X", (unsigned int)((data & 0xFFFFFFFF00000000) >> 32), (unsigned int)(data & 0xFFFFFFFF)); | |
79 | sprintf(buf, "%012"llx"", data); | |
55acbb2a M |
80 | AddLogLine(fileName, extData, buf); |
81 | } | |
82 | ||
83 | void AddLogCurrentDT(char *fileName) { | |
c805748f | 84 | char buf[20]; |
85 | memset(buf, 0x00, sizeof(buf)); | |
55acbb2a | 86 | struct tm *curTime; |
55acbb2a M |
87 | time_t now = time(0); |
88 | curTime = gmtime(&now); | |
c805748f | 89 | strftime (buf, sizeof(buf), "%Y-%m-%d %H:%M:%S", curTime); |
90 | AddLogLine(fileName, "\nanticollision: ", buf); | |
55acbb2a M |
91 | } |
92 | ||
c805748f | 93 | void FillFileNameByUID(char *fileName, uint8_t *uid, char *ext, int byteCount) { |
94 | if ( fileName == NULL || uid == NULL || ext == NULL ){ | |
95 | printf("error: parameter is NULL\n"); | |
96 | return; | |
97 | } | |
55acbb2a | 98 | char * fnameptr = fileName; |
c805748f | 99 | memset(fileName, 0x00, FILE_PATH_SIZE); |
55acbb2a | 100 | |
e0c635d1 | 101 | for (int j = 0; j < byteCount; j++, fnameptr += 2) |
c805748f | 102 | sprintf(fnameptr, "%02X", uid[j]); |
55acbb2a | 103 | sprintf(fnameptr, "%s", ext); |
55acbb2a M |
104 | } |
105 | ||
106 | // printing and converting functions | |
9827020a | 107 | void print_hex(const uint8_t * data, const size_t len) { |
534983d7 | 108 | size_t i; |
9827020a | 109 | for (i=0; i < len; ++i) |
534983d7 | 110 | printf("%02x ", data[i]); |
9827020a | 111 | printf("\n"); |
112 | } | |
0d2c5909 | 113 | |
9827020a | 114 | void print_hex_break(const uint8_t *data, const size_t len, uint8_t breaks) { |
a1689f41 | 115 | |
116 | int rownum = 0; | |
117 | printf("[%02d] | ", rownum); | |
118 | for (int i = 0; i < len; ++i) { | |
534983d7 | 119 | |
9827020a | 120 | printf("%02X ", data[i]); |
121 | ||
122 | // check if a line break is needed | |
a1689f41 | 123 | if ( breaks > 0 && !((i+1) % breaks) && (i+1 < len) ) { |
124 | ++rownum; | |
125 | printf("\n[%02d] | ", rownum); | |
126 | } | |
9827020a | 127 | } |
534983d7 | 128 | printf("\n"); |
129 | } | |
130 | ||
334cc089 | 131 | char *sprint_hex(const uint8_t *data, const size_t len) { |
b915fda3 | 132 | |
133 | int maxLen = ( len > 1024/3) ? 1024/3 : len; | |
534983d7 | 134 | static char buf[1024]; |
334cc089 | 135 | memset(buf, 0x00, 1024); |
534983d7 | 136 | char * tmp = buf; |
137 | size_t i; | |
138 | ||
b915fda3 | 139 | for (i=0; i < maxLen; ++i, tmp += 3) |
334cc089 | 140 | sprintf(tmp, "%02X ", data[i]); |
534983d7 | 141 | return buf; |
142 | } | |
f89c7050 | 143 | |
2767fc02 | 144 | char *sprint_bin_break(const uint8_t *data, const size_t len, const uint8_t breaks) { |
581b31fb | 145 | |
bf32dd92 | 146 | // make sure we don't go beyond our char array memory |
581b31fb | 147 | size_t in_index = 0, out_index = 0; |
148 | int max_len; | |
0c97a456 | 149 | if (breaks==0) |
150 | max_len = ( len > MAX_BIN_BREAK_LENGTH ) ? MAX_BIN_BREAK_LENGTH : len; | |
151 | else | |
152 | max_len = ( len+(len/breaks) > MAX_BIN_BREAK_LENGTH ) ? MAX_BIN_BREAK_LENGTH : len+(len/breaks); | |
153 | ||
bf32dd92 | 154 | static char buf[MAX_BIN_BREAK_LENGTH]; // 3072 + end of line characters if broken at 8 bits |
155 | //clear memory | |
156 | memset(buf, 0x00, sizeof(buf)); | |
2767fc02 | 157 | char *tmp = buf; |
79544b28 | 158 | |
bf32dd92 | 159 | // loop through the out_index to make sure we don't go too far |
581b31fb | 160 | for (out_index=0; out_index < max_len-2; out_index++) { |
bf32dd92 | 161 | // set character |
05164399 | 162 | sprintf(tmp++, "%u", (unsigned int) data[in_index]); |
9332b857 | 163 | // check if a line break is needed and we have room to print it in our array |
bf32dd92 | 164 | if ( (breaks > 0) && !((in_index+1) % breaks) && (out_index+1 != max_len) ) { |
165 | // increment and print line break | |
166 | out_index++; | |
2767fc02 | 167 | sprintf(tmp++, "%s","\n"); |
581b31fb | 168 | } |
bf32dd92 | 169 | in_index++; |
170 | } | |
581b31fb | 171 | // last char. |
172 | sprintf(tmp++, "%u", (unsigned int) data[in_index]); | |
79544b28 | 173 | return buf; |
174 | } | |
175 | ||
2767fc02 | 176 | char *sprint_bin(const uint8_t *data, const size_t len) { |
177 | return sprint_bin_break(data, len, 0); | |
178 | } | |
0c97a456 | 179 | |
180 | char *sprint_hex_ascii(const uint8_t *data, const size_t len) { | |
181 | static char buf[1024]; | |
508b37ba | 182 | char *tmp = buf; |
9827020a | 183 | memset(buf, 0x00, 1024); |
184 | size_t max_len = (len > 1010) ? 1010 : len; | |
185 | sprintf(tmp, "%s| %s", sprint_hex(data, max_len) , data); | |
0c97a456 | 186 | return buf; |
187 | } | |
0d2c5909 | 188 | |
f89c7050 M |
189 | void num_to_bytes(uint64_t n, size_t len, uint8_t* dest) |
190 | { | |
191 | while (len--) { | |
192 | dest[len] = (uint8_t) n; | |
193 | n >>= 8; | |
194 | } | |
195 | } | |
196 | ||
197 | uint64_t bytes_to_num(uint8_t* src, size_t len) | |
198 | { | |
199 | uint64_t num = 0; | |
200 | while (len--) | |
201 | { | |
202 | num = (num << 8) | (*src); | |
203 | src++; | |
204 | } | |
205 | return num; | |
206 | } | |
f397b5cc | 207 | |
0d2c5909 | 208 | // takes a number (uint64_t) and creates a binarray in dest. |
209 | void num_to_bytebits(uint64_t n, size_t len, uint8_t *dest) { | |
a126332a | 210 | while (len--) { |
211 | dest[len] = n & 1; | |
212 | n >>= 1; | |
213 | } | |
214 | } | |
0d2c5909 | 215 | //least significant bit first |
c805748f | 216 | void num_to_bytebitsLSBF(uint64_t n, size_t len, uint8_t *dest) { |
0d2c5909 | 217 | for(int i = 0 ; i < len ; ++i) { |
218 | dest[i] = n & 1; | |
219 | n >>= 1; | |
220 | } | |
221 | } | |
222 | ||
a126332a | 223 | |
e1c88b09 | 224 | // aa,bb,cc,dd,ee,ff,gg,hh, ii,jj,kk,ll,mm,nn,oo,pp |
225 | // to | |
226 | // hh,gg,ff,ee,dd,cc,bb,aa, pp,oo,nn,mm,ll,kk,jj,ii | |
227 | // up to 64 bytes or 512 bits | |
224e8c1a | 228 | uint8_t *SwapEndian64(const uint8_t *src, const size_t len, const uint8_t blockSize){ |
f4d0ffd1 | 229 | uint8_t buf[64]; |
224e8c1a | 230 | memset(buf, 0x00, 64); |
231 | uint8_t *tmp = buf; | |
232 | for (uint8_t block=0; block < (uint8_t)(len/blockSize); block++){ | |
233 | for (size_t i = 0; i < blockSize; i++){ | |
234 | tmp[i+(blockSize*block)] = src[(blockSize-1-i)+(blockSize*block)]; | |
e1c88b09 | 235 | } |
236 | } | |
224e8c1a | 237 | return tmp; |
e1c88b09 | 238 | } |
239 | ||
0d2c5909 | 240 | // takes a uint8_t src array, for len items and reverses the byte order in blocksizes (8,16,32,64), |
241 | // returns: the dest array contains the reordered src array. | |
f4d0ffd1 | 242 | void SwapEndian64ex(const uint8_t *src, const size_t len, const uint8_t blockSize, uint8_t *dest){ |
243 | for (uint8_t block=0; block < (uint8_t)(len/blockSize); block++){ | |
244 | for (size_t i = 0; i < blockSize; i++){ | |
245 | dest[i+(blockSize*block)] = src[(blockSize-1-i)+(blockSize*block)]; | |
246 | } | |
247 | } | |
248 | } | |
249 | ||
9ca155ba M |
250 | // ------------------------------------------------------------------------- |
251 | // string parameters lib | |
252 | // ------------------------------------------------------------------------- | |
253 | ||
f397b5cc M |
254 | // ------------------------------------------------------------------------- |
255 | // line - param line | |
256 | // bg, en - symbol numbers in param line of beginning an ending parameter | |
257 | // paramnum - param number (from 0) | |
258 | // ------------------------------------------------------------------------- | |
259 | int param_getptr(const char *line, int *bg, int *en, int paramnum) | |
260 | { | |
261 | int i; | |
262 | int len = strlen(line); | |
263 | ||
264 | *bg = 0; | |
265 | *en = 0; | |
266 | ||
267 | // skip spaces | |
268 | while (line[*bg] ==' ' || line[*bg]=='\t') (*bg)++; | |
269 | if (*bg >= len) { | |
270 | return 1; | |
271 | } | |
272 | ||
273 | for (i = 0; i < paramnum; i++) { | |
274 | while (line[*bg]!=' ' && line[*bg]!='\t' && line[*bg] != '\0') (*bg)++; | |
275 | while (line[*bg]==' ' || line[*bg]=='\t') (*bg)++; | |
276 | ||
277 | if (line[*bg] == '\0') return 1; | |
278 | } | |
279 | ||
280 | *en = *bg; | |
281 | while (line[*en] != ' ' && line[*en] != '\t' && line[*en] != '\0') (*en)++; | |
282 | ||
283 | (*en)--; | |
284 | ||
285 | return 0; | |
286 | } | |
287 | ||
31abe49f | 288 | |
f397b5cc M |
289 | char param_getchar(const char *line, int paramnum) |
290 | { | |
291 | int bg, en; | |
292 | ||
293 | if (param_getptr(line, &bg, &en, paramnum)) return 0x00; | |
294 | ||
295 | return line[bg]; | |
296 | } | |
297 | ||
298 | uint8_t param_get8(const char *line, int paramnum) | |
299 | { | |
60e86577 | 300 | return param_get8ex(line, paramnum, 0, 10); |
f397b5cc M |
301 | } |
302 | ||
f6d9fb17 | 303 | /** |
31abe49f | 304 | * @brief Reads a decimal integer (actually, 0-254, not 255) |
f6d9fb17 MHS |
305 | * @param line |
306 | * @param paramnum | |
31abe49f | 307 | * @return -1 if error |
f6d9fb17 MHS |
308 | */ |
309 | uint8_t param_getdec(const char *line, int paramnum, uint8_t *destination) | |
310 | { | |
31abe49f | 311 | uint8_t val = param_get8ex(line, paramnum, 255, 10); |
31abe49f | 312 | if( (int8_t) val == -1) return 1; |
f6d9fb17 MHS |
313 | (*destination) = val; |
314 | return 0; | |
315 | } | |
316 | /** | |
317 | * @brief Checks if param is decimal | |
318 | * @param line | |
319 | * @param paramnum | |
320 | * @return | |
321 | */ | |
322 | uint8_t param_isdec(const char *line, int paramnum) | |
323 | { | |
324 | int bg, en; | |
325 | //TODO, check more thorougly | |
326 | if (!param_getptr(line, &bg, &en, paramnum)) return 1; | |
327 | // return strtoul(&line[bg], NULL, 10) & 0xff; | |
328 | ||
329 | return 0; | |
330 | } | |
331 | ||
f397b5cc M |
332 | uint8_t param_get8ex(const char *line, int paramnum, int deflt, int base) |
333 | { | |
334 | int bg, en; | |
335 | ||
336 | if (!param_getptr(line, &bg, &en, paramnum)) | |
6c6d1ac1 | 337 | return strtoul(&line[bg], NULL, base) & 0xff; |
f397b5cc M |
338 | else |
339 | return deflt; | |
340 | } | |
341 | ||
342 | uint32_t param_get32ex(const char *line, int paramnum, int deflt, int base) | |
343 | { | |
344 | int bg, en; | |
345 | ||
346 | if (!param_getptr(line, &bg, &en, paramnum)) | |
6c6d1ac1 | 347 | return strtoul(&line[bg], NULL, base); |
f397b5cc M |
348 | else |
349 | return deflt; | |
350 | } | |
351 | ||
352 | uint64_t param_get64ex(const char *line, int paramnum, int deflt, int base) | |
353 | { | |
354 | int bg, en; | |
355 | ||
356 | if (!param_getptr(line, &bg, &en, paramnum)) | |
6c6d1ac1 | 357 | return strtoull(&line[bg], NULL, base); |
f397b5cc M |
358 | else |
359 | return deflt; | |
360 | ||
361 | return 0; | |
362 | } | |
363 | ||
364 | int param_gethex(const char *line, int paramnum, uint8_t * data, int hexcnt) | |
365 | { | |
366 | int bg, en, temp, i; | |
367 | ||
508b37ba | 368 | if (hexcnt & 1) return 1; |
f397b5cc M |
369 | |
370 | if (param_getptr(line, &bg, &en, paramnum)) return 1; | |
371 | ||
508b37ba | 372 | if (en - bg + 1 != hexcnt) return 1; |
f397b5cc M |
373 | |
374 | for(i = 0; i < hexcnt; i += 2) { | |
375 | if (!(isxdigit(line[bg + i]) && isxdigit(line[bg + i + 1])) ) return 1; | |
376 | ||
377 | sscanf((char[]){line[bg + i], line[bg + i + 1], 0}, "%X", &temp); | |
378 | data[i / 2] = temp & 0xff; | |
379 | } | |
380 | ||
381 | return 0; | |
382 | } | |
e98572a1 | 383 | int param_gethex_ex(const char *line, int paramnum, uint8_t * data, int *hexcnt) |
384 | { | |
385 | int bg, en, temp, i; | |
386 | ||
387 | //if (hexcnt % 2) | |
388 | // return 1; | |
389 | ||
390 | if (param_getptr(line, &bg, &en, paramnum)) return 1; | |
391 | ||
392 | *hexcnt = en - bg + 1; | |
393 | if (*hexcnt % 2) //error if not complete hex bytes | |
394 | return 1; | |
aea4d766 | 395 | |
e98572a1 | 396 | for(i = 0; i < *hexcnt; i += 2) { |
3bc7b13d | 397 | if (!(isxdigit(line[bg + i]) && isxdigit(line[bg + i + 1])) ) return 1; |
e98572a1 | 398 | |
399 | sscanf((char[]){line[bg + i], line[bg + i + 1], 0}, "%X", &temp); | |
400 | data[i / 2] = temp & 0xff; | |
401 | } | |
402 | ||
403 | return 0; | |
404 | } | |
aea4d766 | 405 | int param_getstr(const char *line, int paramnum, char * str) |
406 | { | |
407 | int bg, en; | |
408 | ||
409 | if (param_getptr(line, &bg, &en, paramnum)) return 0; | |
410 | ||
411 | memcpy(str, line + bg, en - bg + 1); | |
412 | str[en - bg + 1] = 0; | |
413 | ||
414 | return en - bg + 1; | |
415 | } | |
79544b28 | 416 | |
417 | /* | |
418 | The following methods comes from Rfidler sourcecode. | |
419 | https://github.com/ApertureLabsLtd/RFIDler/blob/master/firmware/Pic32/RFIDler.X/src/ | |
420 | */ | |
421 | ||
422 | // convert hex to sequence of 0/1 bit values | |
423 | // returns number of bits converted | |
424 | int hextobinarray(char *target, char *source) | |
425 | { | |
426 | int length, i, count= 0; | |
427 | char x; | |
428 | ||
429 | length = strlen(source); | |
430 | // process 4 bits (1 hex digit) at a time | |
431 | while(length--) | |
432 | { | |
433 | x= *(source++); | |
434 | // capitalize | |
435 | if (x >= 'a' && x <= 'f') | |
436 | x -= 32; | |
437 | // convert to numeric value | |
438 | if (x >= '0' && x <= '9') | |
439 | x -= '0'; | |
440 | else if (x >= 'A' && x <= 'F') | |
441 | x -= 'A' - 10; | |
442 | else | |
443 | return 0; | |
444 | // output | |
445 | for(i= 0 ; i < 4 ; ++i, ++count) | |
446 | *(target++)= (x >> (3 - i)) & 1; | |
447 | } | |
448 | ||
449 | return count; | |
450 | } | |
451 | ||
452 | // convert hex to human readable binary string | |
453 | int hextobinstring(char *target, char *source) | |
454 | { | |
455 | int length; | |
456 | ||
457 | if(!(length= hextobinarray(target, source))) | |
458 | return 0; | |
459 | binarraytobinstring(target, target, length); | |
460 | return length; | |
461 | } | |
462 | ||
463 | // convert binary array of 0x00/0x01 values to hex (safe to do in place as target will always be shorter than source) | |
464 | // return number of bits converted | |
465 | int binarraytohex(char *target, char *source, int length) | |
466 | { | |
467 | unsigned char i, x; | |
468 | int j = length; | |
469 | ||
470 | if(j % 4) | |
471 | return 0; | |
472 | ||
473 | while(j) | |
474 | { | |
475 | for(i= x= 0 ; i < 4 ; ++i) | |
476 | x += ( source[i] << (3 - i)); | |
477 | sprintf(target,"%X", x); | |
478 | ++target; | |
479 | source += 4; | |
480 | j -= 4; | |
481 | } | |
482 | return length; | |
483 | } | |
484 | ||
485 | // convert binary array to human readable binary | |
486 | void binarraytobinstring(char *target, char *source, int length) | |
487 | { | |
488 | int i; | |
489 | ||
490 | for(i= 0 ; i < length ; ++i) | |
491 | *(target++)= *(source++) + '0'; | |
492 | *target= '\0'; | |
493 | } | |
494 | ||
495 | // return parity bit required to match type | |
a126332a | 496 | uint8_t GetParity( uint8_t *bits, uint8_t type, int length) |
79544b28 | 497 | { |
498 | int x; | |
ab7bb494 | 499 | for( x = 0 ; length > 0 ; --length) |
79544b28 | 500 | x += bits[length - 1]; |
501 | x %= 2; | |
79544b28 | 502 | return x ^ type; |
503 | } | |
504 | ||
505 | // add HID parity to binary array: EVEN prefix for 1st half of ID, ODD suffix for 2nd half | |
a126332a | 506 | void wiegand_add_parity(uint8_t *target, uint8_t *source, uint8_t length) |
79544b28 | 507 | { |
508 | *(target++)= GetParity(source, EVEN, length / 2); | |
509 | memcpy(target, source, length); | |
510 | target += length; | |
511 | *(target)= GetParity(source + length / 2, ODD, length / 2); | |
512 | } | |
c3c241f3 | 513 | |
0d2c5909 | 514 | // xor two arrays together for len items. The dst array contains the new xored values. |
c3c241f3 | 515 | void xor(unsigned char * dst, unsigned char * src, size_t len) { |
516 | for( ; len > 0; len--,dst++,src++) | |
517 | *dst ^= *src; | |
518 | } | |
519 | ||
520 | int32_t le24toh (uint8_t data[3]) { | |
521 | return (data[2] << 16) | (data[1] << 8) | data[0]; | |
522 | } | |
c805748f | 523 | uint32_t le32toh (uint8_t *data) { |
524 | return (uint32_t)( (data[3]<<24) | (data[2]<<16) | (data[1]<<8) | data[0]); | |
525 | } | |
0d2c5909 | 526 | // Pack a bitarray into a uint32_t. |
ad6219fc | 527 | uint32_t PackBits(uint8_t start, uint8_t len, uint8_t* bits) { |
9984b173 | 528 | |
529 | if (len > 32) return 0; | |
ad6219fc | 530 | |
531 | int i = start; | |
532 | int j = len-1; | |
ad6219fc | 533 | uint32_t tmp = 0; |
9984b173 | 534 | |
ad6219fc | 535 | for (; j >= 0; --j, ++i) |
536 | tmp |= bits[i] << j; | |
537 | ||
538 | return tmp; | |
539 | } | |
9984b173 | 540 | |
ab7bb494 | 541 | // RotateLeft - Ultralight, Desfire, works on byte level |
542 | // 00-01-02 >> 01-02-00 | |
6bb7609c | 543 | void rol(uint8_t *data, const size_t len){ |
9984b173 | 544 | uint8_t first = data[0]; |
545 | for (size_t i = 0; i < len-1; i++) { | |
546 | data[i] = data[i+1]; | |
547 | } | |
548 | data[len-1] = first; | |
6bb7609c | 549 | } |
550 | ||
0d2c5909 | 551 | // Swap bit order on a uint32_t value. Can be limited by nrbits just use say 8bits reversal |
6bb7609c | 552 | uint32_t SwapBits(uint32_t value, int nrbits) { |
553 | uint32_t newvalue = 0; | |
554 | for(int i = 0; i < nrbits; i++) { | |
555 | newvalue ^= ((value >> i) & 1) << (nrbits - 1 - i); | |
556 | } | |
557 | return newvalue; | |
9984b173 | 558 | } |