diff options
Diffstat (limited to 'src/lib/kdf/sp800_56c')
-rw-r--r-- | src/lib/kdf/sp800_56c/sp800_56c.cpp | 2 | ||||
-rw-r--r-- | src/lib/kdf/sp800_56c/sp800_56c.h | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/src/lib/kdf/sp800_56c/sp800_56c.cpp b/src/lib/kdf/sp800_56c/sp800_56c.cpp index c0a1a1f68..fbdd13eb9 100644 --- a/src/lib/kdf/sp800_56c/sp800_56c.cpp +++ b/src/lib/kdf/sp800_56c/sp800_56c.cpp @@ -5,7 +5,7 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#include <botan/sp800_56c.h> +#include <botan/internal/sp800_56c.h> namespace Botan { diff --git a/src/lib/kdf/sp800_56c/sp800_56c.h b/src/lib/kdf/sp800_56c/sp800_56c.h index bdbdfcd9e..ffc56752c 100644 --- a/src/lib/kdf/sp800_56c/sp800_56c.h +++ b/src/lib/kdf/sp800_56c/sp800_56c.h @@ -11,14 +11,12 @@ #include <botan/kdf.h> #include <botan/mac.h> -BOTAN_FUTURE_INTERNAL_HEADER(sp800_56c.h) - namespace Botan { /** * NIST SP 800-56C KDF */ -class BOTAN_PUBLIC_API(2,0) SP800_56C final : public KDF +class SP800_56C final : public KDF { public: std::string name() const override { return "SP800-56C(" + m_prf->name() + ")"; } |