Coverage Report

Created: 2020-02-14 15:38

/src/botan/build/include/botan/noekeon.h
Line
Count
Source (jump to first uncovered line)
1
/*
2
* Noekeon
3
* (C) 1999-2008 Jack Lloyd
4
*
5
* Botan is released under the Simplified BSD License (see license.txt)
6
*/
7
8
#ifndef BOTAN_NOEKEON_H_
9
#define BOTAN_NOEKEON_H_
10
11
#include <botan/block_cipher.h>
12
13
BOTAN_FUTURE_INTERNAL_HEADER(noekeon.h)
14
15
namespace Botan {
16
17
/**
18
* Noekeon
19
*/
20
class BOTAN_PUBLIC_API(2,0) Noekeon 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
      std::string provider() const override;
27
      void clear() override;
28
0
      std::string name() const override { return "Noekeon"; }
29
0
      BlockCipher* clone() const override { return new Noekeon; }
30
      size_t parallelism() const override;
31
32
   private:
33
#if defined(BOTAN_HAS_NOEKEON_SIMD)
34
      void simd_encrypt_4(const uint8_t in[], uint8_t out[]) const;
35
      void simd_decrypt_4(const uint8_t in[], uint8_t out[]) const;
36
#endif
37
38
      /**
39
      * The Noekeon round constants
40
      */
41
      static const uint8_t RC[17];
42
43
      void key_schedule(const uint8_t[], size_t) override;
44
      secure_vector<uint32_t> m_EK, m_DK;
45
   };
46
47
}
48
49
#endif