8 #ifndef BOTAN_SP800_56C_H__
9 #define BOTAN_SP800_56C_H__
11 #include <botan/kdf.h>
12 #include <botan/mac.h>
22 std::string
name()
const override {
return "SP800-56C(" + m_prf->name() +
")"; }
43 size_t kdf(uint8_t key[],
size_t key_len,
44 const uint8_t secret[],
size_t secret_len,
45 const uint8_t salt[],
size_t salt_len,
46 const uint8_t label[],
size_t label_len)
const override;
54 std::unique_ptr<MessageAuthenticationCode> m_prf;
55 std::unique_ptr<KDF> m_exp;
KDF * clone() const override
SP800_56C(MessageAuthenticationCode *mac, KDF *exp)
std::string name() const override