Botan 3.4.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
13namespace Botan {
14
15/**
16* IDEA
17*/
18class IDEA final : public Block_Cipher_Fixed_Params<8, 16> {
19 public:
20 void encrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override;
21 void decrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override;
22
23 void clear() override;
24
25 std::string provider() const override;
26
27 std::string name() const override { return "IDEA"; }
28
29 std::unique_ptr<BlockCipher> new_object() const override { return std::make_unique<IDEA>(); }
30
31 size_t parallelism() const override;
32 bool has_keying_material() const override;
33
34 private:
35#if defined(BOTAN_HAS_IDEA_SSE2)
36 static void sse2_idea_op_8(const uint8_t in[64], uint8_t out[64], const uint16_t EK[52]);
37#endif
38
39 void key_schedule(std::span<const uint8_t> key) override;
40
41 secure_vector<uint16_t> m_EK, m_DK;
42};
43
44} // namespace Botan
45
46#endif
void decrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override
Definition idea.cpp:148
std::string provider() const override
Definition idea.cpp:115
std::unique_ptr< BlockCipher > new_object() const override
Definition idea.h:29
void clear() override
Definition idea.cpp:222
bool has_keying_material() const override
Definition idea.cpp:165
void encrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override
Definition idea.cpp:128
std::string name() const override
Definition idea.h:27
size_t parallelism() const override
Definition idea.cpp:105
int(* final)(unsigned char *, CTX *)
std::vector< T, secure_allocator< T > > secure_vector
Definition secmem.h:61