Coverage Report

Created: 2020-03-26 13:53

/src/botan/build/include/botan/siphash.h
Line
Count
Source (jump to first uncovered line)
1
/*
2
* SipHash
3
* (C) 2014,2015 Jack Lloyd
4
*
5
* Botan is released under the Simplified BSD License (see license.txt)
6
*/
7
8
#ifndef BOTAN_SIPHASH_H_
9
#define BOTAN_SIPHASH_H_
10
11
#include <botan/mac.h>
12
13
BOTAN_FUTURE_INTERNAL_HEADER(siphash.h)
14
15
namespace Botan {
16
17
class BOTAN_PUBLIC_API(2,0) SipHash final : public MessageAuthenticationCode
18
   {
19
   public:
20
0
      SipHash(size_t c = 2, size_t d = 4) : m_C(c), m_D(d) {}
21
22
      void clear() override;
23
      std::string name() const override;
24
25
      MessageAuthenticationCode* clone() const override;
26
27
0
      size_t output_length() const override { return 8; }
28
29
      Key_Length_Specification key_spec() const override
30
0
         {
31
0
         return Key_Length_Specification(16);
32
0
         }
33
   private:
34
      void add_data(const uint8_t[], size_t) override;
35
      void final_result(uint8_t[]) override;
36
      void key_schedule(const uint8_t[], size_t) override;
37
38
      const size_t m_C, m_D;
39
      secure_vector<uint64_t> m_V;
40
      uint64_t m_mbuf = 0;
41
      size_t m_mbuf_pos = 0;
42
      uint8_t m_words = 0;
43
   };
44
45
}
46
47
#endif