mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-17 09:31:59 -05:00
21 lines
593 B
C++
21 lines
593 B
C++
|
#include <boost/crc.hpp>
|
||
|
#include <boost/cstdint.hpp>
|
||
|
|
||
|
extern "C"
|
||
|
{
|
||
|
short crc12 (unsigned char const * data, int length);
|
||
|
bool crc12_check (unsigned char const * data, int length);
|
||
|
}
|
||
|
|
||
|
// assumes CRC is last 16 bits of the data and is set to zero
|
||
|
// caller should assign the returned CRC into the message in big endian byte order
|
||
|
short crc12 (unsigned char const * data, int length)
|
||
|
{
|
||
|
return boost::augmented_crc<12, 0xc06> (data, length);
|
||
|
}
|
||
|
|
||
|
bool crc12_check (unsigned char const * data, int length)
|
||
|
{
|
||
|
return !boost::augmented_crc<12, 0xc06> (data, length);
|
||
|
}
|