Coverage Report

Created: 2023-09-25 06:34

/src/botan/build/include/botan/internal/seed.h
Line
Count
Source (jump to first uncovered line)
1
/*
2
* SEED
3
* (C) 1999-2007 Jack Lloyd
4
*
5
* Botan is released under the Simplified BSD License (see license.txt)
6
*/
7
8
#ifndef BOTAN_SEED_H_
9
#define BOTAN_SEED_H_
10
11
#include <botan/block_cipher.h>
12
13
namespace Botan {
14
15
/**
16
* SEED, a Korean block cipher
17
*/
18
class SEED final : public Block_Cipher_Fixed_Params<16, 16> {
19
   public:
20
      void encrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override;
21
      void decrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override;
22
23
      void clear() override;
24
25
44
      std::string name() const override { return "SEED"; }
26
27
0
      std::unique_ptr<BlockCipher> new_object() const override { return std::make_unique<SEED>(); }
28
29
      bool has_keying_material() const override;
30
31
   private:
32
      void key_schedule(std::span<const uint8_t> key) override;
33
34
      secure_vector<uint32_t> m_K;
35
};
36
37
}  // namespace Botan
38
39
#endif