Botan
1.11.15
|
#include <botan/kdf.h>
#include <botan/internal/algo_registry.h>
#include <botan/exceptn.h>
#include <botan/internal/xor_buf.h>
Go to the source code of this file.
Namespaces | |
namespace | Botan |
Defines | |
#define | BOTAN_REGISTER_KDF_1HASH(type, name) BOTAN_REGISTER_NAMED_T(KDF, name, type, (make_new_T_1X<type, HashFunction>)) |
#define | BOTAN_REGISTER_KDF_NAMED_1STR(type, name) BOTAN_REGISTER_NAMED_T(KDF, name, type, (make_new_T_1str_req<type>)) |
#define | BOTAN_REGISTER_KDF_NOARGS(type, name) BOTAN_REGISTER_NAMED_T(KDF, name, type, (make_new_T<type>)) |
#define BOTAN_REGISTER_KDF_1HASH | ( | type, | |
name | |||
) | BOTAN_REGISTER_NAMED_T(KDF, name, type, (make_new_T_1X<type, HashFunction>)) |
Definition at line 20 of file kdf_utils.h.
#define BOTAN_REGISTER_KDF_NAMED_1STR | ( | type, | |
name | |||
) | BOTAN_REGISTER_NAMED_T(KDF, name, type, (make_new_T_1str_req<type>)) |
Definition at line 23 of file kdf_utils.h.
#define BOTAN_REGISTER_KDF_NOARGS | ( | type, | |
name | |||
) | BOTAN_REGISTER_NAMED_T(KDF, name, type, (make_new_T<type>)) |
Definition at line 18 of file kdf_utils.h.