Coverage Report

Created: 2020-10-17 06:46

/src/botan/build/include/botan/camellia.h
Line
Count
Source (jump to first uncovered line)
1
/*
2
* Camellia
3
* (C) 2012 Jack Lloyd
4
*
5
* Botan is released under the Simplified BSD License (see license.txt)
6
*/
7
8
#ifndef BOTAN_CAMELLIA_H_
9
#define BOTAN_CAMELLIA_H_
10
11
#include <botan/block_cipher.h>
12
13
BOTAN_FUTURE_INTERNAL_HEADER(camellia.h)
14
15
namespace Botan {
16
17
/**
18
* Camellia-128
19
*/
20
class BOTAN_PUBLIC_API(2,0) Camellia_128 final : public Block_Cipher_Fixed_Params<16, 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
125
      std::string name() const override { return "Camellia-128"; }
28
0
      BlockCipher* clone() const override { return new Camellia_128; }
29
   private:
30
      void key_schedule(const uint8_t key[], size_t length) override;
31
32
      secure_vector<uint64_t> m_SK;
33
   };
34
35
/**
36
* Camellia-192
37
*/
38
class BOTAN_PUBLIC_API(2,0) Camellia_192 final : public Block_Cipher_Fixed_Params<16, 24>
39
   {
40
   public:
41
      void encrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override;
42
      void decrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override;
43
44
      void clear() override;
45
0
      std::string name() const override { return "Camellia-192"; }
46
0
      BlockCipher* clone() const override { return new Camellia_192; }
47
   private:
48
      void key_schedule(const uint8_t key[], size_t length) override;
49
50
      secure_vector<uint64_t> m_SK;
51
   };
52
53
/**
54
* Camellia-256
55
*/
56
class BOTAN_PUBLIC_API(2,0) Camellia_256 final : public Block_Cipher_Fixed_Params<16, 32>
57
   {
58
   public:
59
      void encrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override;
60
      void decrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override;
61
62
      void clear() override;
63
255
      std::string name() const override { return "Camellia-256"; }
64
0
      BlockCipher* clone() const override { return new Camellia_256; }
65
   private:
66
      void key_schedule(const uint8_t key[], size_t length) override;
67
68
      secure_vector<uint64_t> m_SK;
69
   };
70
71
}
72
73
#endif