静态链接 openssl 库
linking with openssl lib statically
我已经按照 this guide 手动构建了 openssl(静态库),现在当我尝试使用 libeay32.lib link 我的 MFC 测试应用程序时,出现以下错误:
1>Linking...
1>libeay32.lib(e_capi.obj) : error LNK2019: unresolved external symbol __imp__CertFreeCertificateContext@4 referenced in function _capi_free_key
1>libeay32.lib(e_capi.obj) : error LNK2019: unresolved external symbol __imp__CertGetCertificateContextProperty@16 referenced in function _capi_get_prov_info
1>libeay32.lib(e_capi.obj) : error LNK2019: unresolved external symbol __imp__CertOpenStore@20 referenced in function _capi_open_store
1>libeay32.lib(e_capi.obj) : error LNK2019: unresolved external symbol __imp__CertFindCertificateInStore@24 referenced in function _capi_find_cert
1>libeay32.lib(e_capi.obj) : error LNK2019: unresolved external symbol __imp__CertEnumCertificatesInStore@8 referenced in function _capi_find_cert
1>libeay32.lib(e_capi.obj) : error LNK2019: unresolved external symbol __imp__CertCloseStore@8 referenced in function _capi_find_key
1>libeay32.lib(e_capi.obj) : error LNK2019: unresolved external symbol __imp__CertDuplicateCertificateContext@4 referenced in function _capi_load_ssl_client_cert
有什么建议吗?提前致谢。
编辑:
我使用 OpenSSL 1.0.1t 源代码和 Visual Studio 2008 命令提示符构建 32 位静态库(我在 1.0.2h 版本上没有成功)。我的测试应用程序在 link 动态时工作正常,但我希望能够 link 使用静态库。我正在使用 OpenSSL 进行 EVP 对称加密和解密
when I try to link my MFC test app with libeay32.lib I get following errors...
您需要使用enable-capieng
进行配置。另见 Compilation and Installation on the OpenSSL wiki and How to use CAPI engine in OpenSSL 邮件列表存档。
error LNK2019: unresolved external symbol __imp__CertFreeCertificateContext@4 referenced in function _capi_free_key
...
一旦配置正确,您需要link 反对Windows' crypt32.lib
库。例如,参见 CertFreeCertificateContext functions。在 Windows 上,将以下内容添加到您的 MSVC 源文件中应该就足够了:
#pragma comment (lib, "crypt32");
我已经按照 this guide 手动构建了 openssl(静态库),现在当我尝试使用 libeay32.lib link 我的 MFC 测试应用程序时,出现以下错误:
1>Linking...
1>libeay32.lib(e_capi.obj) : error LNK2019: unresolved external symbol __imp__CertFreeCertificateContext@4 referenced in function _capi_free_key
1>libeay32.lib(e_capi.obj) : error LNK2019: unresolved external symbol __imp__CertGetCertificateContextProperty@16 referenced in function _capi_get_prov_info
1>libeay32.lib(e_capi.obj) : error LNK2019: unresolved external symbol __imp__CertOpenStore@20 referenced in function _capi_open_store
1>libeay32.lib(e_capi.obj) : error LNK2019: unresolved external symbol __imp__CertFindCertificateInStore@24 referenced in function _capi_find_cert
1>libeay32.lib(e_capi.obj) : error LNK2019: unresolved external symbol __imp__CertEnumCertificatesInStore@8 referenced in function _capi_find_cert
1>libeay32.lib(e_capi.obj) : error LNK2019: unresolved external symbol __imp__CertCloseStore@8 referenced in function _capi_find_key
1>libeay32.lib(e_capi.obj) : error LNK2019: unresolved external symbol __imp__CertDuplicateCertificateContext@4 referenced in function _capi_load_ssl_client_cert
有什么建议吗?提前致谢。
编辑: 我使用 OpenSSL 1.0.1t 源代码和 Visual Studio 2008 命令提示符构建 32 位静态库(我在 1.0.2h 版本上没有成功)。我的测试应用程序在 link 动态时工作正常,但我希望能够 link 使用静态库。我正在使用 OpenSSL 进行 EVP 对称加密和解密
when I try to link my MFC test app with libeay32.lib I get following errors...
您需要使用enable-capieng
进行配置。另见 Compilation and Installation on the OpenSSL wiki and How to use CAPI engine in OpenSSL 邮件列表存档。
error LNK2019: unresolved external symbol __imp__CertFreeCertificateContext@4 referenced in function _capi_free_key ...
一旦配置正确,您需要link 反对Windows' crypt32.lib
库。例如,参见 CertFreeCertificateContext functions。在 Windows 上,将以下内容添加到您的 MSVC 源文件中应该就足够了:
#pragma comment (lib, "crypt32");