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