Botan 3.11.1
Crypto and TLS for C&
twofish.h
Go to the documentation of this file.
1/*
2* Twofish
3* (C) 1999-2007 Jack Lloyd
4*
5* Botan is released under the Simplified BSD License (see license.txt)
6*/
7
8#ifndef BOTAN_TWOFISH_H_
9#define BOTAN_TWOFISH_H_
10
11#include <botan/block_cipher.h>
12#include <botan/secmem.h>
13
14namespace Botan {
15
16/**
17* Twofish, an AES finalist
18*/
19class Twofish final : public Block_Cipher_Fixed_Params<16, 16, 32, 8> {
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 std::string provider() const override;
26
27 std::string name() const override { return "Twofish"; }
28
29 std::unique_ptr<BlockCipher> new_object() const override { return std::make_unique<Twofish>(); }
30
31 size_t parallelism() const override;
32
33 bool has_keying_material() const override;
34
35 private:
36 void key_schedule(std::span<const uint8_t> key) override;
37
38#if defined(BOTAN_HAS_TWOFISH_AVX512)
39 void avx512_encrypt_16(const uint8_t in[16 * 16], uint8_t out[16 * 16]) const;
40 void avx512_decrypt_16(const uint8_t in[16 * 16], uint8_t out[16 * 16]) const;
41#endif
42
45
46 secure_vector<uint8_t> m_QS; // Sboxes without MDS applied, only used for AVX-512
47};
48
49} // namespace Botan
50
51#endif
std::string provider() const override
Definition twofish.cpp:348
bool has_keying_material() const override
Definition twofish.cpp:344
void clear() override
Definition twofish.cpp:493
void encrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override
Definition twofish.cpp:173
void decrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override
Definition twofish.cpp:260
size_t parallelism() const override
Definition twofish.cpp:357
std::unique_ptr< BlockCipher > new_object() const override
Definition twofish.h:29
std::string name() const override
Definition twofish.h:27
std::vector< T, secure_allocator< T > > secure_vector
Definition secmem.h:68