Coverage Report

Created: 2023-06-07 07:00

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