Botan 3.9.0
Crypto and TLS for C&
noekeon.h
Go to the documentation of this file.
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#include <botan/secmem.h>
13
14namespace Botan {
15
16/**
17* Noekeon
18*/
19class Noekeon final : public Block_Cipher_Fixed_Params<16, 16> {
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 std::string provider() const override;
25 void clear() override;
26
27 std::string name() const override { return "Noekeon"; }
28
29 std::unique_ptr<BlockCipher> new_object() const override { return std::make_unique<Noekeon>(); }
30
31 size_t parallelism() const override;
32 bool has_keying_material() const override;
33
34 private:
35#if defined(BOTAN_HAS_NOEKEON_SIMD)
36 void simd_encrypt_4(const uint8_t in[], uint8_t out[]) const;
37 void simd_decrypt_4(const uint8_t in[], uint8_t out[]) const;
38#endif
39
40 /**
41 * The Noekeon round constants
42 */
43 static const uint8_t RC[17];
44
45 void key_schedule(std::span<const uint8_t> key) override;
46 secure_vector<uint32_t> m_EK, m_DK;
47};
48
49} // namespace Botan
50
51#endif
size_t parallelism() const override
Definition noekeon.cpp:75
std::unique_ptr< BlockCipher > new_object() const override
Definition noekeon.h:29
void encrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override
Definition noekeon.cpp:104
std::string provider() const override
Definition noekeon.cpp:85
void clear() override
Definition noekeon.cpp:245
void decrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override
Definition noekeon.cpp:152
bool has_keying_material() const override
Definition noekeon.cpp:197
std::string name() const override
Definition noekeon.h:27
std::vector< T, secure_allocator< T > > secure_vector
Definition secmem.h:69