aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine/openssl
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-10-09 14:40:38 +0000
committerlloyd <[email protected]>2008-10-09 14:40:38 +0000
commit643df89a37dd0f8d9c090825166231db4fdaa55c (patch)
tree886bce3a306c24797986f9e578bc4528acbef59e /src/engine/openssl
parentbd2cfef3f4c0b73a2bbe840cc7a3d882a2c4b5bc (diff)
Add BOTAN_DLL macro to public class definitions that were missing it.
Diffstat (limited to 'src/engine/openssl')
-rw-r--r--src/engine/openssl/bn_wrap.h4
-rw-r--r--src/engine/openssl/eng_ossl.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/engine/openssl/bn_wrap.h b/src/engine/openssl/bn_wrap.h
index a42967544..e8464e74e 100644
--- a/src/engine/openssl/bn_wrap.h
+++ b/src/engine/openssl/bn_wrap.h
@@ -14,7 +14,7 @@ namespace Botan {
/*************************************************
* Lightweight OpenSSL BN Wrapper *
*************************************************/
-class OSSL_BN
+class BOTAN_DLL OSSL_BN
{
public:
BIGNUM* value;
@@ -34,7 +34,7 @@ class OSSL_BN
/*************************************************
* Lightweight OpenSSL BN_CTX Wrapper *
*************************************************/
-class OSSL_BN_CTX
+class BOTAN_DLL OSSL_BN_CTX
{
public:
BN_CTX* value;
diff --git a/src/engine/openssl/eng_ossl.h b/src/engine/openssl/eng_ossl.h
index 5f72357c2..979261214 100644
--- a/src/engine/openssl/eng_ossl.h
+++ b/src/engine/openssl/eng_ossl.h
@@ -14,7 +14,7 @@ namespace Botan {
/*************************************************
* OpenSSL Engine *
*************************************************/
-class OpenSSL_Engine : public Engine
+class BOTAN_DLL OpenSSL_Engine : public Engine
{
public:
#if defined(BOTAN_HAS_IF_PUBLIC_KEY_FAMILY)