Coverage Report

Created: 2020-08-01 06:18

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