Fix missing symbols in Windows DLL
parent
a809dbdbc4
commit
3185e93fe3
|
|
@ -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.
|
||||||
|
|
|
||||||
4
gf2n.cpp
4
gf2n.cpp
|
|
@ -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)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue