Exemple #1
0
std::string getCrc(const boost::filesystem::path& path)
{
    CRC32 algorithm;
    hashFile(path, algorithm);
    return algorithm.getHash();
}