Botan 3.11.1
Crypto and TLS for C&
seed.h
Go to the documentation of this file.
1/*
2* SEED
3* (C) 1999-2007 Jack Lloyd
4*
5* Botan is released under the Simplified BSD License (see license.txt)
6*/
7
8#ifndef BOTAN_SEED_H_
9#define BOTAN_SEED_H_
10
11#include <botan/block_cipher.h>
12#include <botan/secmem.h>
13
14namespace Botan {
15
16/**
17* SEED, a Korean block cipher
18*/
19class SEED final : public Block_Cipher_Fixed_Params<16, 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 name() const override { return "SEED"; }
27
28 std::unique_ptr<BlockCipher> new_object() const override { return std::make_unique<SEED>(); }
29
30 std::string provider() const override;
31 size_t parallelism() const override;
32 bool has_keying_material() const override;
33
34 private:
35 void key_schedule(std::span<const uint8_t> key) override;
36
37#if defined(BOTAN_HAS_SEED_AVX512_GFNI)
38 void avx512_gfni_encrypt(const uint8_t in[], uint8_t out[], size_t blocks) const;
39 void avx512_gfni_decrypt(const uint8_t in[], uint8_t out[], size_t blocks) const;
40#endif
41
42#if defined(BOTAN_HAS_SEED_HWAES)
43 void hwaes_encrypt(const uint8_t in[], uint8_t out[], size_t blocks) const;
44 void hwaes_decrypt(const uint8_t in[], uint8_t out[], size_t blocks) const;
45#endif
46
48};
49
50} // namespace Botan
51
52#endif
void encrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override
Definition seed.cpp:78
bool has_keying_material() const override
Definition seed.cpp:264
void decrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override
Definition seed.cpp:173
size_t parallelism() const override
Definition seed.cpp:318
std::string provider() const override
Definition seed.cpp:334
std::unique_ptr< BlockCipher > new_object() const override
Definition seed.h:28
std::string name() const override
Definition seed.h:26
void clear() override
Definition seed.cpp:314
std::vector< T, secure_allocator< T > > secure_vector
Definition secmem.h:68