#include <boost/crc.hpp> // for boost::crc_basic, boost::crc_optimal
#include <boost/cstdint.hpp> // for boost::uint64_t
#include <cstddef> // for std::size_t
#include <iostream> // for std::cout
//功能描述:演示如何使用boost库的CRC库生成CRC64校验码
//作者: Kagula 最后修改时间:2011-05-26
//测试环境: WinXPSP3 + VS2008SP1 + Boost1.43
int _tmain(int argc, _TCHAR* argv[])
{
// This is "123456789abc" in ASCII
unsigned char const data[] = { 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x61, 0x62, 0x63};
std::size_t const data_len = sizeof( data ) / sizeof( data[0] );
//"64"是输出64位校验码,当然你也可以指定16位校验码
//0x1021是二进制多项式用来除data所指向的源二进制多项式,也可以定义其它除数
boost::crc_optimal<64,0x1021> crc_ccitt3;
//对源进行处理,生成余数(校验码)
crc_ccitt3.process_bytes( data, data_len );
//取64位校验码
boost::uint64_t checksumT = crc_ccitt3.checksum();
//以十六进制形式,输出校验码
std::cout<<std::hex<<checksumT<<std::endl;
return 0;
}