8 #ifndef BOTAN_NOEKEON_H_
9 #define BOTAN_NOEKEON_H_
11 #include <botan/block_cipher.h>
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;
26 std::string provider()
const override;
27 void clear()
override;
28 std::string
name()
const override {
return "Noekeon"; }
30 size_t parallelism()
const override;
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;
41 static const uint8_t RC[17];
43 void key_schedule(
const uint8_t[],
size_t)
override;
BlockCipher * clone() const override
int(* final)(unsigned char *, CTX *)
#define BOTAN_PUBLIC_API(maj, min)
std::vector< T, secure_allocator< T >> secure_vector
std::string name() const override
#define BOTAN_FUTURE_INTERNAL_HEADER(hdr)