Coverage Report

Created: 2021-02-21 07:20

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