aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/pk_pad/eme.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/pk_pad/eme.h')
-rw-r--r--src/lib/pk_pad/eme.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/lib/pk_pad/eme.h b/src/lib/pk_pad/eme.h
index 38cce4b09..c21dfde45 100644
--- a/src/lib/pk_pad/eme.h
+++ b/src/lib/pk_pad/eme.h
@@ -11,8 +11,6 @@
#include <botan/secmem.h>
#include <string>
-BOTAN_FUTURE_INTERNAL_HEADER(eme.h)
-
namespace Botan {
class RandomNumberGenerator;
@@ -20,7 +18,7 @@ class RandomNumberGenerator;
/**
* Encoding Method for Encryption
*/
-class BOTAN_PUBLIC_API(2,0) EME
+class EME
{
public:
virtual ~EME() = default;
@@ -87,7 +85,7 @@ class BOTAN_PUBLIC_API(2,0) EME
* @param algo_spec the name of the EME to create
* @return pointer to newly allocated object of that type
*/
-BOTAN_PUBLIC_API(2,0) EME* get_eme(const std::string& algo_spec);
+EME* get_eme(const std::string& algo_spec);
}