11 #include <boost/crc.hpp> 15 inline uint64_t
crc64(
const std::string& _str)
17 boost::crc_optimal<64, 0x04C11DB7, 0, 0, false, false> crc;
18 crc.process_bytes(_str.data(), _str.size());
19 return crc.checksum();
uint64_t crc64(const std::string &_str)
Definition: CRC.h:15
Miscellaneous functions and helpers are located here.
Definition: BOOST_FILESYSTEM.h:21