Botan 3.11.0
Crypto and TLS for C&
idea.h
Go to the documentation of this file.
1/*
2* IDEA
3* (C) 1999-2007 Jack Lloyd
4*
5* Botan is released under the Simplified BSD License (see license.txt)
6*/
7
8#ifndef BOTAN_IDEA_H_
9#define BOTAN_IDEA_H_
10
11#include <botan/block_cipher.h>
12#include <botan/secmem.h>
13
14namespace Botan {
15
16/**
17* IDEA
18*/
19class IDEA final : public Block_Cipher_Fixed_Params<8, 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 void clear() override;
25
26 std::string provider() const override;
27
28 std::string name() const override { return "IDEA"; }
29
30 std::unique_ptr<BlockCipher> new_object() const override { return std::make_unique<IDEA>(); }
31
32 size_t parallelism() const override;
33 bool has_keying_material() const override;
34
35 private:
36#if defined(BOTAN_HAS_IDEA_AVX2)
37 static void avx2_idea_op_16(const uint8_t in[128], uint8_t out[128], const uint16_t EK[52]);
38#endif
39
40#if defined(BOTAN_HAS_IDEA_SSE2)
41 static void sse2_idea_op_8(const uint8_t in[64], uint8_t out[64], const uint16_t EK[52]);
42#endif
43
44 void key_schedule(std::span<const uint8_t> key) override;
45
46 secure_vector<uint16_t> m_EK, m_DK;
47};
48
49} // namespace Botan
50
51#endif
void decrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override
Definition idea.cpp:177
std::string provider() const override
Definition idea.cpp:127
std::unique_ptr< BlockCipher > new_object() const override
Definition idea.h:30
void clear() override
Definition idea.cpp:262
bool has_keying_material() const override
Definition idea.cpp:205
void encrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override
Definition idea.cpp:146
std::string name() const override
Definition idea.h:28
size_t parallelism() const override
Definition idea.cpp:111
std::vector< T, secure_allocator< T > > secure_vector
Definition secmem.h:68