Coverage Report

Created: 2023-06-07 07:00

/src/botan/build/include/botan/internal/serpent.h
Line
Count
Source (jump to first uncovered line)
1
/*
2
* Serpent
3
* (C) 1999-2007 Jack Lloyd
4
*
5
* Botan is released under the Simplified BSD License (see license.txt)
6
*/
7
8
#ifndef BOTAN_SERPENT_H_
9
#define BOTAN_SERPENT_H_
10
11
#include <botan/block_cipher.h>
12
13
namespace Botan {
14
15
/**
16
* Serpent is the most conservative of the AES finalists
17
* https://www.cl.cam.ac.uk/~rja14/serpent.html
18
*/
19
class Serpent 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
      std::string provider() const override;
26
27
0
      std::string name() const override { return "Serpent"; }
28
29
0
      std::unique_ptr<BlockCipher> new_object() const override { return std::make_unique<Serpent>(); }
30
31
0
      size_t parallelism() const override { return 4; }
32
33
      bool has_keying_material() const override;
34
35
   private:
36
#if defined(BOTAN_HAS_SERPENT_SIMD)
37
      void simd_encrypt_4(const uint8_t in[16 * 4], uint8_t out[16 * 4]) const;
38
      void simd_decrypt_4(const uint8_t in[16 * 4], uint8_t out[16 * 4]) const;
39
#endif
40
41
#if defined(BOTAN_HAS_SERPENT_AVX2)
42
      void avx2_encrypt_8(const uint8_t in[16 * 8], uint8_t out[16 * 8]) const;
43
      void avx2_decrypt_8(const uint8_t in[16 * 8], uint8_t out[16 * 8]) const;
44
#endif
45
46
#if defined(BOTAN_HAS_SERPENT_AVX512)
47
      void avx512_encrypt_16(const uint8_t in[16 * 16], uint8_t out[16 * 16]) const;
48
      void avx512_decrypt_16(const uint8_t in[16 * 16], uint8_t out[16 * 16]) const;
49
#endif
50
51
      void key_schedule(const uint8_t key[], size_t length) override;
52
53
      secure_vector<uint32_t> m_round_key;
54
};
55
56
}  // namespace Botan
57
58
#endif