Coverage Report

Created: 2021-05-04 09:02

/src/botan/build/include/botan/internal/whrlpool.h
Line
Count
Source (jump to first uncovered line)
1
/*
2
* Whirlpool
3
* (C) 1999-2007 Jack Lloyd
4
*
5
* Botan is released under the Simplified BSD License (see license.txt)
6
*/
7
8
#ifndef BOTAN_WHIRLPOOL_H_
9
#define BOTAN_WHIRLPOOL_H_
10
11
#include <botan/internal/mdx_hash.h>
12
13
namespace Botan {
14
15
/**
16
* Whirlpool
17
*/
18
class Whirlpool final : public MDx_HashFunction
19
   {
20
   public:
21
0
      std::string name() const override { return "Whirlpool"; }
22
0
      size_t output_length() const override { return 64; }
23
0
      std::unique_ptr<HashFunction> new_object() const override { return std::make_unique<Whirlpool>(); }
24
      std::unique_ptr<HashFunction> copy_state() const override;
25
26
      void clear() override;
27
28
      Whirlpool() : MDx_HashFunction(64, true, true, 32), m_M(8), m_digest(8)
29
0
         { clear(); }
30
   private:
31
      void compress_n(const uint8_t[], size_t blocks) override;
32
      void copy_out(uint8_t[]) override;
33
34
      secure_vector<uint64_t> m_M, m_digest;
35
   };
36
37
}
38
39
#endif