8 #ifndef BOTAN_CRC32_H__
9 #define BOTAN_CRC32_H__
11 #include <botan/hash.h>
21 std::string
name()
const override {
return "CRC32"; }
25 void clear()
override { m_crc = 0xFFFFFFFF; }
30 void add_data(
const uint8_t[],
size_t)
override;
31 void final_result(uint8_t[])
override;
size_t output_length() const override
std::string name() const override
HashFunction * clone() const override