8 #ifndef BOTAN_TWOFISH_H__
9 #define BOTAN_TWOFISH_H__
11 #include <botan/block_cipher.h>
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;
24 void clear()
override;
25 std::string
name()
const override {
return "Twofish"; }
28 void key_schedule(
const uint8_t[],
size_t)
override;
30 static const uint32_t MDS0[256];
31 static const uint32_t MDS1[256];
32 static const uint32_t MDS2[256];
33 static const uint32_t MDS3[256];
34 static const uint8_t Q0[256];
35 static const uint8_t Q1[256];
36 static const uint8_t RS[32];
37 static const uint8_t EXP_TO_POLY[255];
38 static const uint8_t POLY_TO_EXP[255];
std::string name() const override
BlockCipher * clone() const override
std::vector< T, secure_allocator< T >> secure_vector