Coverage Report

Created: 2019-12-03 15:21

/src/botan/build/include/botan/cast128.h
Line
Count
Source (jump to first uncovered line)
1
/*
2
* CAST-128
3
* (C) 1999-2007 Jack Lloyd
4
*
5
* Botan is released under the Simplified BSD License (see license.txt)
6
*/
7
8
#ifndef BOTAN_CAST128_H_
9
#define BOTAN_CAST128_H_
10
11
#include <botan/block_cipher.h>
12
13
BOTAN_FUTURE_INTERNAL_HEADER(cast128.h)
14
15
namespace Botan {
16
17
/**
18
* CAST-128
19
*/
20
class BOTAN_PUBLIC_API(2,0) CAST_128 final : public Block_Cipher_Fixed_Params<8, 11, 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
0
      std::string name() const override { return "CAST-128"; }
28
0
      BlockCipher* clone() const override { return new CAST_128; }
29
30
   private:
31
      void key_schedule(const uint8_t[], size_t) override;
32
33
      static void cast_ks(secure_vector<uint32_t>& ks,
34
                          secure_vector<uint32_t>& user_key);
35
36
      secure_vector<uint32_t> m_MK;
37
      secure_vector<uint8_t> m_RK;
38
   };
39
40
}
41
42
#endif