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/pk_pad/emsa_raw/emsa_raw.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/lib/pk_pad/emsa_raw/emsa_raw.h') diff --git a/src/lib/pk_pad/emsa_raw/emsa_raw.h b/src/lib/pk_pad/emsa_raw/emsa_raw.h index dc01b94a2..fdcd89aa9 100644 --- a/src/lib/pk_pad/emsa_raw/emsa_raw.h +++ b/src/lib/pk_pad/emsa_raw/emsa_raw.h @@ -8,9 +8,7 @@ #ifndef BOTAN_EMSA_RAW_H_ #define BOTAN_EMSA_RAW_H_ -#include - -BOTAN_FUTURE_INTERNAL_HEADER(emsa_raw.h) +#include namespace Botan { @@ -18,7 +16,7 @@ namespace Botan { * EMSA-Raw - sign inputs directly * Don't use this unless you know what you are doing. */ -class BOTAN_PUBLIC_API(2,0) EMSA_Raw final : public EMSA +class EMSA_Raw final : public EMSA { public: EMSA* clone() override { return new EMSA_Raw(); } -- cgit v1.2.3