Coverage Report

Created: 2023-06-07 07:00

/src/botan/build/include/botan/internal/keccak.h
Line
Count
Source (jump to first uncovered line)
1
/*
2
* Keccak
3
* (C) 2010 Jack Lloyd
4
*
5
* Botan is released under the Simplified BSD License (see license.txt)
6
*/
7
8
#ifndef BOTAN_KECCAK_H_
9
#define BOTAN_KECCAK_H_
10
11
#include <botan/hash.h>
12
#include <botan/secmem.h>
13
#include <string>
14
15
namespace Botan {
16
17
/**
18
* Keccak[1600], a SHA-3 candidate
19
*/
20
class Keccak_1600 final : public HashFunction {
21
   public:
22
      /**
23
      * @param output_bits the size of the hash output; must be one of
24
      *                    224, 256, 384, or 512
25
      */
26
      explicit Keccak_1600(size_t output_bits = 512);
27
28
0
      size_t hash_block_size() const override { return m_bitrate / 8; }
29
30
0
      size_t output_length() const override { return m_output_bits / 8; }
31
32
      std::unique_ptr<HashFunction> new_object() const override;
33
      std::unique_ptr<HashFunction> copy_state() const override;
34
      std::string name() const override;
35
      void clear() override;
36
37
   private:
38
      void add_data(const uint8_t input[], size_t length) override;
39
      void final_result(uint8_t out[]) override;
40
41
      size_t m_output_bits, m_bitrate;
42
      secure_vector<uint64_t> m_S;
43
      size_t m_S_pos;
44
};
45
46
}  // namespace Botan
47
48
#endif