Coverage Report

Created: 2020-11-21 08:34

/src/botan/build/include/botan/internal/x919_mac.h
Line
Count
Source (jump to first uncovered line)
1
/*
2
* ANSI X9.19 MAC
3
* (C) 1999-2007 Jack Lloyd
4
*
5
* Botan is released under the Simplified BSD License (see license.txt)
6
*/
7
8
#ifndef BOTAN_ANSI_X919_MAC_H_
9
#define BOTAN_ANSI_X919_MAC_H_
10
11
#include <botan/mac.h>
12
#include <botan/block_cipher.h>
13
14
namespace Botan {
15
16
/**
17
* DES/3DES-based MAC from ANSI X9.19
18
*/
19
class ANSI_X919_MAC final : public MessageAuthenticationCode
20
   {
21
   public:
22
      void clear() override;
23
      std::string name() const override;
24
0
      size_t output_length() const override { return 8; }
25
26
      MessageAuthenticationCode* clone() const override;
27
28
      Key_Length_Specification key_spec() const override
29
0
         {
30
0
         return Key_Length_Specification(8, 16, 8);
31
0
         }
32
33
      ANSI_X919_MAC();
34
35
      ANSI_X919_MAC(const ANSI_X919_MAC&) = delete;
36
      ANSI_X919_MAC& operator=(const ANSI_X919_MAC&) = delete;
37
   private:
38
      void add_data(const uint8_t[], size_t) override;
39
      void final_result(uint8_t[]) override;
40
      void key_schedule(const uint8_t[], size_t) override;
41
42
      std::unique_ptr<BlockCipher> m_des1, m_des2;
43
      secure_vector<uint8_t> m_state;
44
      size_t m_position;
45
   };
46
47
}
48
49
#endif