]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - common/parity.h
1 //-----------------------------------------------------------------------------
2 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
3 // at your option, any later version. See the LICENSE.txt file for the text of
5 //-----------------------------------------------------------------------------
6 // Generic CRC calculation code.
7 //-----------------------------------------------------------------------------
14 extern const uint8_t OddByteParity
[256];
16 static inline uint8_t oddparity8(uint8_t bt
)
18 return OddByteParity
[bt
];
22 extern const uint8_t EvenByteParity
[256];
24 static inline uint8_t evenparity8(const uint8_t bt
)
26 return EvenByteParity
[bt
];
30 static inline uint8_t evenparity32(uint32_t x
)
34 return EvenByteParity
[x
& 0xff];
38 #endif /* __PARITY_H */