Coverage Report

Created: 2021-10-13 08:49

/src/botan/build/include/botan/internal/crc32.h
Line
Count
Source (jump to first uncovered line)
1
/*
2
* CRC32
3
* (C) 1999-2007 Jack Lloyd
4
*
5
* Botan is released under the Simplified BSD License (see license.txt)
6
*/
7
8
#ifndef BOTAN_CRC32_H_
9
#define BOTAN_CRC32_H_
10
11
#include <botan/hash.h>
12
13
namespace Botan {
14
15
/**
16
* 32-bit cyclic redundancy check
17
*/
18
class CRC32 final : public HashFunction
19
   {
20
   public:
21
0
      std::string name() const override { return "CRC32"; }
22
0
      size_t output_length() const override { return 4; }
23
0
      std::unique_ptr<HashFunction> new_object() const override { return std::make_unique<CRC32>(); }
24
      std::unique_ptr<HashFunction> copy_state() const override;
25
26
0
      void clear() override { m_crc = 0xFFFFFFFF; }
27
28
0
      CRC32() { clear(); }
29
0
      ~CRC32() { clear(); }
30
   private:
31
      void add_data(const uint8_t[], size_t) override;
32
      void final_result(uint8_t[]) override;
33
      uint32_t m_crc;
34
   };
35
36
}
37
38
#endif