aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/pk_pad/emsa.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/pk_pad/emsa.h')
-rw-r--r--src/lib/pk_pad/emsa.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/pk_pad/emsa.h b/src/lib/pk_pad/emsa.h
index 437f84d89..6ee509480 100644
--- a/src/lib/pk_pad/emsa.h
+++ b/src/lib/pk_pad/emsa.h
@@ -18,7 +18,7 @@ namespace Botan {
*
* Any way of encoding/padding signatures
*/
-class BOTAN_DLL EMSA
+class BOTAN_PUBLIC_API(2,0) EMSA
{
public:
/**
@@ -69,7 +69,7 @@ class BOTAN_DLL EMSA
* @param algo_spec the name of the EMSA to create
* @return pointer to newly allocated object of that type
*/
-BOTAN_DLL EMSA* get_emsa(const std::string& algo_spec);
+BOTAN_PUBLIC_API(2,0) EMSA* get_emsa(const std::string& algo_spec);
/**
* Returns the hash function used in the given EMSA scheme
@@ -78,7 +78,7 @@ BOTAN_DLL EMSA* get_emsa(const std::string& algo_spec);
* @param algo_spec the name of the EMSA
* @return hash function used in the given EMSA scheme
*/
-BOTAN_DLL std::string hash_for_emsa(const std::string& algo_spec);
+BOTAN_PUBLIC_API(2,0) std::string hash_for_emsa(const std::string& algo_spec);
}