From a55e4b22b6cbeeb30ca787d4ea4e3933ccccbdf1 Mon Sep 17 00:00:00 2001 From: Jack Lloyd Date: Thu, 5 Nov 2020 03:47:06 -0500 Subject: Remove deprecated headers, make more headers internal Now modules default to internal headers instead of defaulting to public; making a new public API should be a visible and intentional choice. Brings the public header count from over 300 to around 150. Also removes the deprecated tls_blocking interface --- src/lib/block/sm4/sm4.cpp | 6 +++--- src/lib/block/sm4/sm4.h | 4 +--- src/lib/block/sm4/sm4_armv8/sm4_armv8.cpp | 2 +- 3 files changed, 5 insertions(+), 7 deletions(-) (limited to 'src/lib/block/sm4') diff --git a/src/lib/block/sm4/sm4.cpp b/src/lib/block/sm4/sm4.cpp index 8198330e6..515543ed0 100644 --- a/src/lib/block/sm4/sm4.cpp +++ b/src/lib/block/sm4/sm4.cpp @@ -6,9 +6,9 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#include -#include -#include +#include +#include +#include #include namespace Botan { diff --git a/src/lib/block/sm4/sm4.h b/src/lib/block/sm4/sm4.h index 637ffd4be..ed6c6742f 100644 --- a/src/lib/block/sm4/sm4.h +++ b/src/lib/block/sm4/sm4.h @@ -10,14 +10,12 @@ #include -BOTAN_FUTURE_INTERNAL_HEADER(sm4.h) - namespace Botan { /** * SM4 */ -class BOTAN_PUBLIC_API(2,2) SM4 final : public Block_Cipher_Fixed_Params<16, 16> +class SM4 final : public Block_Cipher_Fixed_Params<16, 16> { public: void encrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override; diff --git a/src/lib/block/sm4/sm4_armv8/sm4_armv8.cpp b/src/lib/block/sm4/sm4_armv8/sm4_armv8.cpp index 9e7a71a10..be9f832c4 100644 --- a/src/lib/block/sm4/sm4_armv8/sm4_armv8.cpp +++ b/src/lib/block/sm4/sm4_armv8/sm4_armv8.cpp @@ -4,7 +4,7 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#include +#include #include namespace Botan { -- cgit v1.2.3