aboutsummaryrefslogtreecommitdiffstats
path: root/src/pubkey/eckaeg
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/pubkey/eckaeg
parentbd2cfef3f4c0b73a2bbe840cc7a3d882a2c4b5bc (diff)
Add BOTAN_DLL macro to public class definitions that were missing it.
Diffstat (limited to 'src/pubkey/eckaeg')
-rw-r--r--src/pubkey/eckaeg/eckaeg.h8
-rw-r--r--src/pubkey/eckaeg/eckaeg_core.h2
-rw-r--r--src/pubkey/eckaeg/eckaeg_op.h2
3 files changed, 6 insertions, 6 deletions
diff --git a/src/pubkey/eckaeg/eckaeg.h b/src/pubkey/eckaeg/eckaeg.h
index b7cc10df9..476ee6e70 100644
--- a/src/pubkey/eckaeg/eckaeg.h
+++ b/src/pubkey/eckaeg/eckaeg.h
@@ -16,7 +16,7 @@ namespace Botan {
/**
* This class represents ECKAEG Public Keys.
*/
-class ECKAEG_PublicKey : public virtual EC_PublicKey
+class BOTAN_DLL ECKAEG_PublicKey : public virtual EC_PublicKey
{
public:
@@ -74,9 +74,9 @@ class ECKAEG_PublicKey : public virtual EC_PublicKey
/**
* This class represents ECKAEG Private Keys.
*/
-class ECKAEG_PrivateKey : public ECKAEG_PublicKey,
- public EC_PrivateKey,
- public PK_Key_Agreement_Key
+class BOTAN_DLL ECKAEG_PrivateKey : public ECKAEG_PublicKey,
+ public EC_PrivateKey,
+ public PK_Key_Agreement_Key
{
public:
diff --git a/src/pubkey/eckaeg/eckaeg_core.h b/src/pubkey/eckaeg/eckaeg_core.h
index e4494bc98..d1989bb70 100644
--- a/src/pubkey/eckaeg/eckaeg_core.h
+++ b/src/pubkey/eckaeg/eckaeg_core.h
@@ -16,7 +16,7 @@ namespace Botan {
/*************************************************
* ECKAEG Core *
*************************************************/
-class ECKAEG_Core
+class BOTAN_DLL ECKAEG_Core
{
public:
SecureVector<byte> agree(const PointGFp&) const;
diff --git a/src/pubkey/eckaeg/eckaeg_op.h b/src/pubkey/eckaeg/eckaeg_op.h
index be2ff50f8..94355d46b 100644
--- a/src/pubkey/eckaeg/eckaeg_op.h
+++ b/src/pubkey/eckaeg/eckaeg_op.h
@@ -25,7 +25,7 @@ class BOTAN_DLL ECKAEG_Operation
/*************************************************
* Default ECKAEG operation *
*************************************************/
-class Default_ECKAEG_Op : public ECKAEG_Operation
+class BOTAN_DLL Default_ECKAEG_Op : public ECKAEG_Operation
{
public:
SecureVector<byte> agree(const PointGFp& i) const;