projects
/
proxmark3-svn
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
gcc10 compiler fixes:
[proxmark3-svn]
/
common
/
parity.h
diff --git
a/common/parity.h
b/common/parity.h
index 615fdeee442ceb027e34eccc3a73655101534fa4..c574db55b0372e5dc05c20405e9c6154faf11409 100644
(file)
--- a/
common/parity.h
+++ b/
common/parity.h
@@
-13,6
+13,7
@@
#include <stdint.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdbool.h>
+#include "string.h"
extern const uint8_t OddByteParity[256];
extern const uint8_t OddByteParity[256];
@@
-21,6
+22,11
@@
static inline bool oddparity8(const uint8_t x) {
return OddByteParity[x];
}
return OddByteParity[x];
}
+static inline void oddparitybuf(const uint8_t *x, size_t len, uint8_t *parity) {
+ memset(parity, 0x00, (len - 1) / 8 + 1);
+ for (int i = 0; i < len; i++)
+ parity[i / 8] |= oddparity8(x[i]) << (7 - (i % 8));
+}
static inline bool evenparity8(const uint8_t x) {
return !OddByteParity[x];
static inline bool evenparity8(const uint8_t x) {
return !OddByteParity[x];
Impressum
,
Datenschutz