mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-12 18:25:07 +08:00
hide function xor since it interfers with native xor funtions
This commit is contained in:
parent
004b4ae3c9
commit
7378ea531a
1 changed files with 2 additions and 1 deletions
|
@ -23,6 +23,7 @@
|
|||
|
||||
uint8_t g_debugMode;
|
||||
uint8_t g_printAndLog;
|
||||
|
||||
#define PRINTANDLOG_PRINT 1
|
||||
#define PRINTANDLOG_LOG 2
|
||||
|
||||
|
@ -85,7 +86,7 @@ uint8_t GetParity(uint8_t *bits, uint8_t type, int length);
|
|||
void wiegand_add_parity(uint8_t *target, uint8_t *source, uint8_t length);
|
||||
void wiegand_add_parity_swapped(uint8_t *target, uint8_t *source, uint8_t length);
|
||||
|
||||
void xor(unsigned char *dst, unsigned char *src, size_t len);
|
||||
//void xor(unsigned char *dst, unsigned char *src, size_t len);
|
||||
int32_t le24toh(uint8_t data[3]);
|
||||
|
||||
uint32_t PackBits(uint8_t start, uint8_t len, uint8_t *bits);
|
||||
|
|
Loading…
Reference in a new issue