Coverage Report

Created: 2026-02-07 06:16

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/botan/build/include/internal/botan/internal/twofish.h
Line
Count
Source
1
/*
2
* Twofish
3
* (C) 1999-2007 Jack Lloyd
4
*
5
* Botan is released under the Simplified BSD License (see license.txt)
6
*/
7
8
#ifndef BOTAN_TWOFISH_H_
9
#define BOTAN_TWOFISH_H_
10
11
#include <botan/block_cipher.h>
12
#include <botan/secmem.h>
13
14
namespace Botan {
15
16
/**
17
* Twofish, an AES finalist
18
*/
19
class Twofish final : public Block_Cipher_Fixed_Params<16, 16, 32, 8> {
20
   public:
21
      void encrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override;
22
      void decrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override;
23
24
      void clear() override;
25
26
0
      std::string name() const override { return "Twofish"; }
27
28
0
      std::unique_ptr<BlockCipher> new_object() const override { return std::make_unique<Twofish>(); }
29
30
      bool has_keying_material() const override;
31
32
   private:
33
      void key_schedule(std::span<const uint8_t> key) override;
34
35
      static const uint32_t MDS0[256];
36
      static const uint32_t MDS1[256];
37
      static const uint32_t MDS2[256];
38
      static const uint32_t MDS3[256];
39
      static const uint8_t Q0[256];
40
      static const uint8_t Q1[256];
41
      static const uint8_t RS[32];
42
      static const uint8_t EXP_TO_POLY[255];
43
      static const uint8_t POLY_TO_EXP[255];
44
45
      secure_vector<uint32_t> m_SB, m_RK;
46
};
47
48
}  // namespace Botan
49
50
#endif