diff --git a/hash/crc.hpp b/hash/crc.hpp index 4cf718f5..57ec9031 100644 --- a/hash/crc.hpp +++ b/hash/crc.hpp @@ -23,6 +23,8 @@ /////////////////////////////////////////////////////////////////////////////// namespace util::hash { + // Implements the crc32 checksum (from ethernet, png, etc). + // Adapted from the PNG specification (ISO/IEC 15948:2003), appendix D. class crc32 { public: using digest_t = uint32_t;