Fix missing symbols in Windows DLL

pull/815/head
Jeffrey Walton 2019-02-22 08:38:13 -05:00
parent a809dbdbc4
commit 3185e93fe3
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
2 changed files with 5 additions and 5 deletions

View File

@ -500,9 +500,9 @@ const std::string AAD_CHANNEL;
const NameValuePairs& g_nullNameValuePairs; const NameValuePairs& g_nullNameValuePairs;
#else #else
extern const std::string DEFAULT_CHANNEL; extern CRYPTOPP_DLL const std::string DEFAULT_CHANNEL;
extern const std::string AAD_CHANNEL; extern CRYPTOPP_DLL const std::string AAD_CHANNEL;
extern const NameValuePairs& g_nullNameValuePairs; extern CRYPTOPP_DLL const NameValuePairs& g_nullNameValuePairs;
#endif #endif
// Document additional name spaces which show up elsewhere in the sources. // Document additional name spaces which show up elsewhere in the sources.

View File

@ -43,8 +43,8 @@ ANONYMOUS_NAMESPACE_END
NAMESPACE_BEGIN(CryptoPP) NAMESPACE_BEGIN(CryptoPP)
#if (CRYPTOPP_CLMUL_AVAILABLE) #if (CRYPTOPP_CLMUL_AVAILABLE)
extern void GF2NT_233_Multiply_Reduce_CLMUL(const word* pA, const word* pB, word* pC); extern CRYPTOPP_DLL void GF2NT_233_Multiply_Reduce_CLMUL(const word* pA, const word* pB, word* pC);
extern void GF2NT_233_Square_Reduce_CLMUL(const word* pA, word* pC); extern CRYPTOPP_DLL void GF2NT_233_Square_Reduce_CLMUL(const word* pA, word* pC);
#endif #endif
#if (CRYPTOPP_ARM_PMULL_AVAILABLE) #if (CRYPTOPP_ARM_PMULL_AVAILABLE)