Coverage Report

Created: 2020-05-23 13:54

/src/botan/build/include/botan/idea.h
Line
Count
Source (jump to first uncovered line)
1
/*
2
* IDEA
3
* (C) 1999-2007 Jack Lloyd
4
*
5
* Botan is released under the Simplified BSD License (see license.txt)
6
*/
7
8
#ifndef BOTAN_IDEA_H_
9
#define BOTAN_IDEA_H_
10
11
#include <botan/block_cipher.h>
12
13
BOTAN_FUTURE_INTERNAL_HEADER(idea.h)
14
15
namespace Botan {
16
17
/**
18
* IDEA
19
*/
20
class BOTAN_PUBLIC_API(2,0) IDEA final : public Block_Cipher_Fixed_Params<8, 16>
21
   {
22
   public:
23
      void encrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override;
24
      void decrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override;
25
26
      void clear() override;
27
28
      std::string provider() const override;
29
0
      std::string name() const override { return "IDEA"; }
30
0
      BlockCipher* clone() const override { return new IDEA; }
31
      size_t parallelism() const override;
32
33
   private:
34
#if defined(BOTAN_HAS_IDEA_SSE2)
35
      void sse2_idea_op_8(const uint8_t in[64], uint8_t out[64], const uint16_t EK[52]) const;
36
#endif
37
38
      void key_schedule(const uint8_t[], size_t) override;
39
40
      secure_vector<uint16_t> m_EK, m_DK;
41
   };
42
43
}
44
45
#endif