poco
poco copied to clipboard
POCO 1.13.3 Crypto_vs170.vcxproj build fails when using external openssl
Describe the bug Due the changes from "enh(build): vcpkg support for Visual Studio projects (OpenSSL, MariaDB client, PostgreSQL client)" introduced with 1.13.3 building of Crypto_vs170.vcxproj using with external build of failes because of missing libs of openssl.
To Reproduce
call "%env.nmake.path%\vcvars32.bat" set INCLUDE=%%INCLUDE%%;%teamcity.build.checkoutDir%\openssl.vs%VC_VERSION%.shared.%OPENSSL_VERSION%\build\native\inc set LIB=%%LIB%%;%teamcity.build.checkoutDir%\openssl.vs%VC_VERSION%.shared.%OPENSSL_VERSION%\build\native\release\lib cd download buildwin,cmd 170 build shared release Win32 nosamples notests msbuild
Expected behavior Adding the automatic linking of openssl again.
Logs
[11:33:12 ] X509Certificate.cpp [11:33:12 ] OpenSSL 3.0.14 4 Jun 2024 [11:33:14 ] Bibliothek "..\lib\PocoCrypto.lib" und Objekt "..\lib\PocoCrypto.exp" werden erstellt. [11:33:15 ] CipherFactory.obj : error LNK2019: Verweis auf nicht aufgel”stes externes Symbol "_OSSL_PROVIDER_load" in Funktion ""public: __thiscall Poco::Crypto::CipherFactory::CipherFactory(void)" (??0CipherFactory@Crypto@Poco@@QAE@XZ)". [C:\BuildAgent3\work\c363d71bcecc6589\download\Crypto\Crypto_vs170.vcxproj] [11:33:15 ] OpenSSLInitializer.obj : error LNK2001: Nicht aufgel”stes externes Symbol "_OSSL_PROVIDER_load". [C:\BuildAgent3\work\c363d71bcecc6589\download\Crypto\Crypto_vs170.vcxproj] [11:33:15 ] RSACipherImpl.obj : error LNK2001: Nicht aufgel”stes externes Symbol "_EVP_PKEY_type". [C:\BuildAgent3\work\c363d71bcecc6589\download\Crypto\Crypto_vs170.vcxproj] [11:33:15 ] RSADigestEngine.obj : error LNK2001: Nicht aufgel”stes externes Symbol "_EVP_PKEY_type". [C:\BuildAgent3\work\c363d71bcecc6589\download\Crypto\Crypto_vs170.vcxproj]
Please add relevant environment information:
- Windows Server 2019
- POCO Version: 1.13.3
- OpenSSL 3.0.14
Have you tried building with cmake?
Have you tried building with cmake? Not yet, our build pipeline uses buildwin. I will try it locally, but i can take some time, because a lot stuff to do. Btw. 1.13.2 works,
+1 for this issue. I also have external symbols not found when building and statically linking with OpenSSL 3.4.0 compiled locally. Built on Windows 11 with Visual Studio 2022.
@andrewauclair - I've reproduced CMake builds that fail with the same error message.
@andrewauclair - I've reproduced CMake builds that fail with the same error message.
Steps to reproduce would be helpful if you have some to provide.
If you build OpenSSL statically, then you also have to link the Poco libraries with ws2_32.lib Crypt32.lib. I used a small PowerShell script in my CMake build pipeline:
Add-Content -Path ($env:WORKSPACE+'\src\Crypto\CMakeLists.txt') -Value 'target_link_libraries(Crypto PRIVATE ws2_32.lib Crypt32.lib)'
Add-Content -Path ($env:WORKSPACE+'\src\NetSSL_OpenSSL\CMakeLists.txt') -Value 'target_link_libraries(NetSSL PRIVATE ws2_32.lib Crypt32.lib)'
In any case, I can confirm that Poco 1.13.3 with OpenSSL 3.4.0 can be built via CMake under Windows 10 with Visual Studio 2022.
@OgreTransporter - Doesn't that just keep appending the target libraries command every time you run the build script?
Yes, it seems that ws2_32 and Crypt32 are the missing libraries. It seems strange that there wouldn't just be a baked-in option for the libraries to be linked in the upstream CMakeLists.txt. Maybe this should be addressed? I'm not familiar enough with CMake to create a good PR for it at this point.
The problem at this point is the OpenSSL module of CMake. There is no way to specify whether OpenSSL was built statically or shared and which additional libraries are used. OpenSSL itself would have to start delivering CMake files with configuration.
What you could do with POCO would be to specify an optional parameter for OpenSSL in which you add additional libraries to the link. You would then have to add these when calling CMake.
Edit: If you set the switch OPENSSL_USE_STATIC_LIBS in CMake, ws2_32.lib and Crypt32.lib are also linked.
https://github.com/pocoproject/poco/blob/1edabc19d8ed70362f764b2bfc25efc297f617e8/NetSSL_OpenSSL/CMakeLists.txt#L33
https://github.com/pocoproject/poco/blob/1edabc19d8ed70362f764b2bfc25efc297f617e8/Crypto/CMakeLists.txt#L35
Sorry that i didn't answered. Some new details, when adding libcrypto.lib and libssl.lib to Crypto_vs170.vcxproj and NetSSL_OpenSSL_vs170.vcxproj to AdditionalDependencies the build work when using buildwin.cmd/ps1.
CMake i'm currently not using.
Same problem encountered when building. My Environment: Win 10 VS2022 OpenSSL version: 3.3.1 but my Poco lib and Open SSL is all download from vcpkg, some reason make me to build from source to identify something, I don't know whether it will have affect compare with download from offical site.
My steps:
- build and install OpenSSL according to NOTES-WINDOWS.md
for me I install OpenSSL in
C:\Program Files\OpenSSL - build Poco by buildwin.ps1:
.\buildwin.ps1 -vs 170 -action build -linkmode shared -config release -platform x64 -components "Foundation,Util,XML,JSON,Net,NetSSL_OpenSSL,Crypto" -openssl_base "C:\Program Files\OpenSSL"
when it comes to compile Crypto_v170.vscxproj it swarm with linkage error, I have no idea why it not identfiy the openssl lib path.
Net_vs170.vcxproj -> D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\bin64\PocoNet64.dll
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
| Building D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
&"D:\UnportableSoftware\Microsoft Visual Studio\2022\Community\MSBuild\Current\Bin\MSBuild.exe" D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj /nologo /m /t:build /p:Configuration=release_shared /p:BuildProjectReferences=false /p:Platform=x64 /p:useenv=True /v:minimal
正在创建库 ..\lib64\PocoCrypto.lib 和对象 ..\lib64\PocoCrypto.exp
CipherFactory.obj : error LNK2019: 无法解析的外部符号 OSSL_PROVIDER_load,函数 "public: __cdecl Poco::Crypto::CipherFactory::CipherFactory(void)" (??0CipherFactory@Crypto@Poco@@QEAA@XZ) 中引用了该符号 [D:\M
yCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
OpenSSLInitializer.obj : error LNK2001: 无法解析的外部符号 OSSL_PROVIDER_load [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSACipherImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_type [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSADigestEngine.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_type [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSAKey.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_type [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_type [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
Envelope.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_type [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPCipherImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_type [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_type [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
PKCS12Container.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_type [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
CipherFactory.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_type [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECDSADigestEngine.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_type [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKey.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_type [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKeyImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_type [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSACipherImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_get_base_id [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSADigestEngine.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_get_base_id [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSAKey.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_get_base_id [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_get_base_id [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
Envelope.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_get_base_id [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPCipherImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_get_base_id [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_get_base_id [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
PKCS12Container.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_get_base_id [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
CipherFactory.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_get_base_id [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECDSADigestEngine.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_get_base_id [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKey.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_get_base_id [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKeyImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_get_base_id [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSACipherImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_eq [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSADigestEngine.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_eq [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSAKey.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_eq [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_eq [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
Envelope.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_eq [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPCipherImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_eq [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_eq [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
PKCS12Container.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_eq [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
CipherFactory.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_eq [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECDSADigestEngine.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_eq [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKey.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_eq [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKeyImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_eq [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
Envelope.obj : error LNK2001: 无法解析的外部符号 ERR_get_error [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPCipherImpl.obj : error LNK2001: 无法解析的外部符号 ERR_get_error [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2001: 无法解析的外部符号 ERR_get_error [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSACipherImpl.obj : error LNK2001: 无法解析的外部符号 ERR_get_error [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
CipherImpl.obj : error LNK2001: 无法解析的外部符号 ERR_get_error [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
CipherKeyImpl.obj : error LNK2001: 无法解析的外部符号 ERR_get_error [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
CryptoException.obj : error LNK2001: 无法解析的外部符号 ERR_get_error [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKeyImpl.obj : error LNK2001: 无法解析的外部符号 ERR_get_error [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
Envelope.obj : error LNK2001: 无法解析的外部符号 ERR_error_string [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPCipherImpl.obj : error LNK2001: 无法解析的外部符号 ERR_error_string [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2001: 无法解析的外部符号 ERR_error_string [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSACipherImpl.obj : error LNK2001: 无法解析的外部符号 ERR_error_string [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
CipherImpl.obj : error LNK2001: 无法解析的外部符号 ERR_error_string [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
CipherKeyImpl.obj : error LNK2001: 无法解析的外部符号 ERR_error_string [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
CryptoException.obj : error LNK2001: 无法解析的外部符号 ERR_error_string [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKeyImpl.obj : error LNK2001: 无法解析的外部符号 ERR_error_string [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
CipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_CIPHER_get_iv_length,函数 "public: __cdecl Poco::Crypto::`anonymous namespace'::CryptoTransformImpl::CryptoTransformImpl(struct evp_cipher_st c
onst *,class std::vector<unsigned char,class std::allocator<unsigned char> > const &,class std::vector<unsigned char,class std::allocator<unsigned char> > const &,enum Poco::Crypto::A0xca
650916::CryptoTransformImpl::Direction)" (??0CryptoTransformImpl@?A0xca650916@Crypto@Poco@@QEAA@PEBUevp_cipher_st@@AEBV?$vector@EV?$allocator@E@std@@@std@@1W4Direction@0123@@Z) 中引用了该 符号 [D
:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
CipherKeyImpl.obj : error LNK2001: 无法解析的外部符号 EVP_CIPHER_get_iv_length [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
Envelope.obj : error LNK2001: 无法解析的外部符号 EVP_CIPHER_get_iv_length [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
CipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_CIPHER_get_mode,函数 "public: __cdecl Poco::Crypto::`anonymous namespace'::CryptoTransformImpl::CryptoTransformImpl(struct evp_cipher_st const
*,class std::vector<unsigned char,class std::allocator<unsigned char> > const &,class std::vector<unsigned char,class std::allocator<unsigned char> > const &,enum Poco::Crypto::A0xca65091
6::CryptoTransformImpl::Direction)" (??0CryptoTransformImpl@?A0xca650916@Crypto@Poco@@QEAA@PEBUevp_cipher_st@@AEBV?$vector@EV?$allocator@E@std@@@std@@1W4Direction@0123@@Z) 中引用了该符号 [D:\MyC
odeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
CipherKeyImpl.obj : error LNK2001: 无法解析的外部符号 EVP_CIPHER_get_mode [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
CipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_CIPHER_CTX_get_block_size,函数 "public: virtual unsigned __int64 __cdecl Poco::Crypto::`anonymous namespace'::CryptoTransformImpl::blockSize(vo
id)const " (?blockSize@CryptoTransformImpl@?A0xca650916@Crypto@Poco@@UEBA_KXZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
CipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_CipherInit,函数 "public: __cdecl Poco::Crypto::`anonymous namespace'::CryptoTransformImpl::CryptoTransformImpl(struct evp_cipher_st const *,cla
ss std::vector<unsigned char,class std::allocator<unsigned char> > const &,class std::vector<unsigned char,class std::allocator<unsigned char> > const &,enum Poco::Crypto::A0xca650916::Cr
yptoTransformImpl::Direction)" (??0CryptoTransformImpl@?A0xca650916@Crypto@Poco@@QEAA@PEBUevp_cipher_st@@AEBV?$vector@EV?$allocator@E@std@@@std@@1W4Direction@0123@@Z) 中引用了该符号 [D:\MyCodeBa
se\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
CipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_CipherUpdate,函数 "public: virtual __int64 __cdecl Poco::Crypto::`anonymous namespace'::CryptoTransformImpl::transform(unsigned char const *,__
int64,unsigned char *,__int64)" (?transform@CryptoTransformImpl@?A0xca650916@Crypto@Poco@@UEAA_JPEBE_JPEAE1@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs
170.vcxproj]
CipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_CipherFinal_ex,函数 "public: virtual __int64 __cdecl Poco::Crypto::`anonymous namespace'::CryptoTransformImpl::finalize(unsigned char *,__int64
)" (?finalize@CryptoTransformImpl@?A0xca650916@Crypto@Poco@@UEAA_JPEAE_J@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
CipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_CIPHER_CTX_new,函数 "public: __cdecl Poco::Crypto::`anonymous namespace'::CryptoTransformImpl::CryptoTransformImpl(struct evp_cipher_st const *
,class std::vector<unsigned char,class std::allocator<unsigned char> > const &,class std::vector<unsigned char,class std::allocator<unsigned char> > const &,enum Poco::Crypto::A0xca650916
::CryptoTransformImpl::Direction)" (??0CryptoTransformImpl@?A0xca650916@Crypto@Poco@@QEAA@PEBUevp_cipher_st@@AEBV?$vector@EV?$allocator@E@std@@@std@@1W4Direction@0123@@Z) 中引用了该符号 [D:\MyCo
deBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
Envelope.obj : error LNK2001: 无法解析的外部符号 EVP_CIPHER_CTX_new [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
CipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_CIPHER_CTX_reset,函数 "public: virtual __cdecl Poco::Crypto::`anonymous namespace'::CryptoTransformImpl::~CryptoTransformImpl(void)" (??1Crypto
TransformImpl@?A0xca650916@Crypto@Poco@@UEAA@XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
Envelope.obj : error LNK2001: 无法解析的外部符号 EVP_CIPHER_CTX_reset [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
CipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_CIPHER_CTX_free,函数 "public: virtual __cdecl Poco::Crypto::`anonymous namespace'::CryptoTransformImpl::~CryptoTransformImpl(void)" (??1CryptoT
ransformImpl@?A0xca650916@Crypto@Poco@@UEAA@XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
Envelope.obj : error LNK2001: 无法解析的外部符号 EVP_CIPHER_CTX_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
CipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_CIPHER_CTX_set_padding,函数 "public: virtual int __cdecl Poco::Crypto::`anonymous namespace'::CryptoTransformImpl::setPadding(int)" (?setPaddin
g@CryptoTransformImpl@?A0xca650916@Crypto@Poco@@UEAAHH@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
CipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_CIPHER_CTX_ctrl,函数 "public: __cdecl Poco::Crypto::`anonymous namespace'::CryptoTransformImpl::CryptoTransformImpl(struct evp_cipher_st const
*,class std::vector<unsigned char,class std::allocator<unsigned char> > const &,class std::vector<unsigned char,class std::allocator<unsigned char> > const &,enum Poco::Crypto::A0xca65091
6::CryptoTransformImpl::Direction)" (??0CryptoTransformImpl@?A0xca650916@Crypto@Poco@@QEAA@PEBUevp_cipher_st@@AEBV?$vector@EV?$allocator@E@std@@@std@@1W4Direction@0123@@Z) 中引用了该符号 [D:\MyC
odeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
CipherKeyImpl.obj : error LNK2019: 无法解析的外部符号 EVP_CIPHER_get_block_size,函数 "public: int __cdecl Poco::Crypto::CipherKeyImpl::blockSize(void)const " (?blockSize@CipherKeyImpl@Crypto@Poco@@Q
EBAHXZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
Envelope.obj : error LNK2001: 无法解析的外部符号 EVP_CIPHER_get_block_size [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
CipherKeyImpl.obj : error LNK2019: 无法解析的外部符号 EVP_CIPHER_get_key_length,函数 "public: int __cdecl Poco::Crypto::CipherKeyImpl::keySize(void)const " (?keySize@CipherKeyImpl@Crypto@Poco@@QEBAH
XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
CipherKeyImpl.obj : error LNK2019: 无法解析的外部符号 EVP_BytesToKey,函数 "private: void __cdecl Poco::Crypto::CipherKeyImpl::generateKey(class std::basic_string<char,struct std::char_traits<char>,c
lass std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,int)" (?generateKey@CipherKeyImpl@Crypto@Poco@@AEAAXAEB
V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0H@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
CipherKeyImpl.obj : error LNK2019: 无法解析的外部符号 EVP_md5,函数 "private: void __cdecl Poco::Crypto::CipherKeyImpl::generateKey(class std::basic_string<char,struct std::char_traits<char>,class st
d::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,int)" (?generateKey@CipherKeyImpl@Crypto@Poco@@AEAAXAEBV?$basi
c_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0H@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
CipherKeyImpl.obj : error LNK2019: 无法解析的外部符号 EVP_get_cipherbyname,函数 "public: __cdecl Poco::Crypto::CipherKeyImpl::CipherKeyImpl(class std::basic_string<char,struct std::char_traits<char>
,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<
char>,class std::allocator<char> > const &,int,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0CipherKeyImpl@Crypto@Poco@@QEAA@AEBV?$
basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00H0@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
Envelope.obj : error LNK2001: 无法解析的外部符号 EVP_get_cipherbyname [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
CipherKeyImpl.obj : error LNK2019: 无法解析的外部符号 EVP_get_digestbyname,函数 "public: __cdecl Poco::Crypto::CipherKeyImpl::CipherKeyImpl(class std::basic_string<char,struct std::char_traits<char>
,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<
char>,class std::allocator<char> > const &,int,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0CipherKeyImpl@Crypto@Poco@@QEAA@AEBV?$
basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00H0@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
DigestEngine.obj : error LNK2001: 无法解析的外部符号 EVP_get_digestbyname [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2001: 无法解析的外部符号 EVP_get_digestbyname [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
DigestEngine.obj : error LNK2019: 无法解析的外部符号 EVP_MD_get_type,函数 "public: int __cdecl Poco::Crypto::DigestEngine::nid(void)const " (?nid@DigestEngine@Crypto@Poco@@QEBAHXZ) 中引用了该符号 [D:\MyCod
eBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
DigestEngine.obj : error LNK2019: 无法解析的外部符号 EVP_MD_get_size,函数 "public: virtual class std::vector<unsigned char,class std::allocator<unsigned char> > const & __cdecl Poco::Crypto::DigestE
ngine::digest(void)" (?digest@DigestEngine@Crypto@Poco@@UEAAAEBV?$vector@EV?$allocator@E@std@@@std@@XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcx
proj]
DigestEngine.obj : error LNK2019: 无法解析的外部符号 EVP_MD_CTX_get0_md,函数 "public: virtual class std::vector<unsigned char,class std::allocator<unsigned char> > const & __cdecl Poco::Crypto::Dige
stEngine::digest(void)" (?digest@DigestEngine@Crypto@Poco@@UEAAAEBV?$vector@EV?$allocator@E@std@@@std@@XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.
vcxproj]
DigestEngine.obj : error LNK2019: 无法解析的外部符号 EVP_MD_CTX_new,函数 "public: __cdecl Poco::Crypto::DigestEngine::DigestEngine(class std::basic_string<char,struct std::char_traits<char>,class st
d::allocator<char> > const &)" (??0DigestEngine@Crypto@Poco@@QEAA@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-
release\Crypto\Crypto_vs170.vcxproj]
DigestEngine.obj : error LNK2019: 无法解析的外部符号 EVP_MD_CTX_free,函数 "public: virtual __cdecl Poco::Crypto::DigestEngine::~DigestEngine(void)" (??1DigestEngine@Crypto@Poco@@UEAA@XZ) 中引用了该符号 [D:
\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
DigestEngine.obj : error LNK2019: 无法解析的外部符号 EVP_DigestInit_ex,函数 "public: __cdecl Poco::Crypto::DigestEngine::DigestEngine(class std::basic_string<char,struct std::char_traits<char>,class
std::allocator<char> > const &)" (??0DigestEngine@Crypto@Poco@@QEAA@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13
.3-release\Crypto\Crypto_vs170.vcxproj]
DigestEngine.obj : error LNK2019: 无法解析的外部符号 EVP_DigestUpdate,函数 "protected: virtual void __cdecl Poco::Crypto::DigestEngine::updateImpl(void const *,unsigned __int64)" (?updateImpl@Digest
Engine@Crypto@Poco@@MEAAXPEBX_K@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
DigestEngine.obj : error LNK2019: 无法解析的外部符号 EVP_DigestFinal_ex,函数 "public: virtual class std::vector<unsigned char,class std::allocator<unsigned char> > const & __cdecl Poco::Crypto::Dige
stEngine::digest(void)" (?digest@DigestEngine@Crypto@Poco@@UEAAAEBV?$vector@EV?$allocator@E@std@@@std@@XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.
vcxproj]
ECDSADigestEngine.obj : error LNK2019: 无法解析的外部符号 BN_num_bits,函数 "public: class std::vector<unsigned char,class std::allocator<unsigned char> > __cdecl Poco::Crypto::ECDSASignature::rawR(v
oid)const " (?rawR@ECDSASignature@Crypto@Poco@@QEBA?AV?$vector@EV?$allocator@E@std@@@std@@XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 BN_num_bits [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECDSADigestEngine.obj : error LNK2019: 无法解析的外部符号 BN_bin2bn,函数 "public: __cdecl Poco::Crypto::ECDSASignature::ECDSASignature(class std::vector<unsigned char,class std::allocator<unsigned c
har> > const &,class std::vector<unsigned char,class std::allocator<unsigned char> > const &)" (??0ECDSASignature@Crypto@Poco@@QEAA@AEBV?$vector@EV?$allocator@E@std@@@std@@0@Z) 中引用了该 符号 [D
:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2001: 无法解析的外部符号 BN_bin2bn [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECDSADigestEngine.obj : error LNK2019: 无法解析的外部符号 BN_bn2bin,函数 "public: class std::vector<unsigned char,class std::allocator<unsigned char> > __cdecl Poco::Crypto::ECDSASignature::rawR(voi
d)const " (?rawR@ECDSASignature@Crypto@Poco@@QEBA?AV?$vector@EV?$allocator@E@std@@@std@@XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 BN_bn2bin [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECDSADigestEngine.obj : error LNK2019: 无法解析的外部符号 ECDSA_SIG_new,函数 "public: __cdecl Poco::Crypto::ECDSASignature::ECDSASignature(class std::vector<unsigned char,class std::allocator<unsign
ed char> > const &,class std::vector<unsigned char,class std::allocator<unsigned char> > const &)" (??0ECDSASignature@Crypto@Poco@@QEAA@AEBV?$vector@EV?$allocator@E@std@@@std@@0@Z) 中引用 了该符
号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECDSADigestEngine.obj : error LNK2019: 无法解析的外部符号 ECDSA_SIG_free,函数 __catch$??0ECDSASignature@Crypto@Poco@@QEAA@AEBV?$vector@EV?$allocator@E@std@@@std@@0@Z$0 中引用了该符号 [D:\MyCodeBase\gitInte
rest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECDSADigestEngine.obj : error LNK2019: 无法解析的外部符号 d2i_ECDSA_SIG,函数 "public: __cdecl Poco::Crypto::ECDSASignature::ECDSASignature(class std::vector<unsigned char,class std::allocator<unsign
ed char> > const &)" (??0ECDSASignature@Crypto@Poco@@QEAA@AEBV?$vector@EV?$allocator@E@std@@@std@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxpr
oj]
ECDSADigestEngine.obj : error LNK2019: 无法解析的外部符号 i2d_ECDSA_SIG,函数 "public: class std::vector<unsigned char,class std::allocator<unsigned char> > __cdecl Poco::Crypto::ECDSASignature::toDE
R(void)const " (?toDER@ECDSASignature@Crypto@Poco@@QEBA?AV?$vector@EV?$allocator@E@std@@@std@@XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECDSADigestEngine.obj : error LNK2019: 无法解析的外部符号 ECDSA_SIG_get0,函数 "public: __cdecl Poco::Crypto::ECDSASignature::ECDSASignature(class std::vector<unsigned char,class std::allocator<unsig
ned char> > const &,class std::vector<unsigned char,class std::allocator<unsigned char> > const &)" (??0ECDSASignature@Crypto@Poco@@QEAA@AEBV?$vector@EV?$allocator@E@std@@@std@@0@Z) 中引用了该
符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECDSADigestEngine.obj : error LNK2019: 无法解析的外部符号 ECDSA_SIG_get0_r,函数 "public: class std::vector<unsigned char,class std::allocator<unsigned char> > __cdecl Poco::Crypto::ECDSASignature::r
awR(void)const " (?rawR@ECDSASignature@Crypto@Poco@@QEBA?AV?$vector@EV?$allocator@E@std@@@std@@XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECDSADigestEngine.obj : error LNK2019: 无法解析的外部符号 ECDSA_SIG_get0_s,函数 "public: class std::vector<unsigned char,class std::allocator<unsigned char> > __cdecl Poco::Crypto::ECDSASignature::r
awS(void)const " (?rawS@ECDSASignature@Crypto@Poco@@QEBA?AV?$vector@EV?$allocator@E@std@@@std@@XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECDSADigestEngine.obj : error LNK2019: 无法解析的外部符号 ECDSA_SIG_set0,函数 "public: __cdecl Poco::Crypto::ECDSASignature::ECDSASignature(class std::vector<unsigned char,class std::allocator<unsig
ned char> > const &,class std::vector<unsigned char,class std::allocator<unsigned char> > const &)" (??0ECDSASignature@Crypto@Poco@@QEAA@AEBV?$vector@EV?$allocator@E@std@@@std@@0@Z) 中引用了该
符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECDSADigestEngine.obj : error LNK2019: 无法解析的外部符号 ECDSA_sign,函数 "public: class std::vector<unsigned char,class std::allocator<unsigned char> > const & __cdecl Poco::Crypto::ECDSADigestEngi
ne::signature(void)" (?signature@ECDSADigestEngine@Crypto@Poco@@QEAAAEBV?$vector@EV?$allocator@E@std@@@std@@XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_v
s170.vcxproj]
ECDSADigestEngine.obj : error LNK2019: 无法解析的外部符号 ECDSA_verify,函数 "public: bool __cdecl Poco::Crypto::ECDSADigestEngine::verify(class std::vector<unsigned char,class std::allocator<unsigne
d char> > const &)" (?verify@ECDSADigestEngine@Crypto@Poco@@QEAA_NAEBV?$vector@EV?$allocator@E@std@@@std@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs1
70.vcxproj]
EVPPKey.obj : error LNK2001: 无法解析的外部符号 OBJ_nid2sn [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECDSADigestEngine.obj : error LNK2001: 无法解析的外部符号 OBJ_nid2sn [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKey.obj : error LNK2001: 无法解析的外部符号 OBJ_nid2sn [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKeyImpl.obj : error LNK2001: 无法解析的外部符号 OBJ_nid2sn [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
Envelope.obj : error LNK2001: 无法解析的外部符号 OBJ_nid2sn [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECDSADigestEngine.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_new,函数 "public: virtual void __cdecl Poco::Crypto::ECKeyImpl::save(class std::basic_string<char,struct std::char_traits<char>,cla
ss std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char
>,class std::allocator<char> > const &)const " (?save@ECKeyImpl@Crypto@Poco@@UEBAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest
\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKey.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_new [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKeyImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_new [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_new [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKey.obj : error LNK2019: 无法解析的外部符号 OBJ_txt2nid,函数 "public: __cdecl Poco::Crypto::ECKey::ECKey(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > con
st &)" (??0ECKey@Crypto@Poco@@QEAA@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcx
proj]
EVPPKey.obj : error LNK2001: 无法解析的外部符号 OBJ_txt2nid [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 CRYPTO_malloc,函数 "public: static int __cdecl Poco::Crypto::ECKeyImpl::getCurveNID(class std::basic_string<char,struct std::char_traits<char>,class
std::allocator<char> > &)" (?getCurveNID@ECKeyImpl@Crypto@Poco@@SAHAEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.
3-release\Crypto\Crypto_vs170.vcxproj]
ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 CRYPTO_free,函数 "public: static int __cdecl Poco::Crypto::ECKeyImpl::getCurveNID(class std::basic_string<char,struct std::char_traits<char>,class s
td::allocator<char> > &)" (?getCurveNID@ECKeyImpl@Crypto@Poco@@SAHAEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-
release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2001: 无法解析的外部符号 CRYPTO_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2019: 无法解析的外部符号 BIO_free,函数 "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl Poco::Crypto::_X509_NAME_onelin
e_utf8(struct X509_name_st *)" (?_X509_NAME_oneline_utf8@Crypto@Poco@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEAUX509_name_st@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInt
erest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKeyImpl.obj : error LNK2001: 无法解析的外部符号 BIO_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2001: 无法解析的外部符号 BIO_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
PKCS12Container.obj : error LNK2001: 无法解析的外部符号 BIO_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 BIO_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2019: 无法解析的外部符号 BIO_new_mem_buf,函数 "protected: void __cdecl Poco::Crypto::X509Certificate::load(class std::basic_istream<char,struct std::char_traits<char>
> &)" (?load@X509Certificate@Crypto@Poco@@IEAAXAEAV?$basic_istream@DU?$char_traits@D@std@@@std@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj
]
ECKeyImpl.obj : error LNK2001: 无法解析的外部符号 BIO_new_mem_buf [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2001: 无法解析的外部符号 BIO_new_mem_buf [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
PKCS12Container.obj : error LNK2001: 无法解析的外部符号 BIO_new_mem_buf [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 BIO_new_mem_buf [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 EC_GROUP_get_curve_name,函数 "public: int __cdecl Poco::Crypto::ECKeyImpl::groupId(void)const " (?groupId@ECKeyImpl@Crypto@Poco@@QEBAHXZ) 中引用了该符号 [D
:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 EC_get_builtin_curves,函数 "public: static int __cdecl Poco::Crypto::ECKeyImpl::getCurveNID(class std::basic_string<char,struct std::char_traits<cha
r>,class std::allocator<char> > &)" (?getCurveNID@ECKeyImpl@Crypto@Poco@@SAHAEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-po
co-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 EC_KEY_new_by_curve_name,函数 "public: __cdecl Poco::Crypto::ECKeyImpl::ECKeyImpl(int)" (??0ECKeyImpl@Crypto@Poco@@QEAA@H@Z) 中引用了该符号 [D:\MyCodeBase\
gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2001: 无法解析的外部符号 EC_KEY_new_by_curve_name [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 EC_KEY_free,函数 "private: void __cdecl Poco::Crypto::ECKeyImpl::freeEC(void)" (?freeEC@ECKeyImpl@Crypto@Poco@@AEAAXXZ) 中引用了该符号 [D:\MyCodeBase\gitIn
terest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2001: 无法解析的外部符号 EC_KEY_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 EC_KEY_get0_group,函数 "public: int __cdecl Poco::Crypto::ECKeyImpl::groupId(void)const " (?groupId@ECKeyImpl@Crypto@Poco@@QEBAHXZ) 中引 用了该符号 [D:\MyCo
deBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 EC_KEY_set_asn1_flag,函数 "public: __cdecl Poco::Crypto::ECKeyImpl::ECKeyImpl(int)" (??0ECKeyImpl@Crypto@Poco@@QEAA@H@Z) 中引用了该符号 [D:\MyCodeBase\gitI
nterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 EC_KEY_generate_key,函数 "public: __cdecl Poco::Crypto::ECKeyImpl::ECKeyImpl(int)" (??0ECKeyImpl@Crypto@Poco@@QEAA@H@Z) 中引用了该符号 [D:\MyCodeBase\gitIn
terest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2001: 无法解析的外部符号 EC_KEY_generate_key [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 EC_KEY_check_key,函数 "private: void __cdecl Poco::Crypto::ECKeyImpl::checkEC(class std::basic_string<char,struct std::char_traits<char>,class std::
allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)const " (?checkEC@ECKeyImpl@Crypto@Poco@@AEBAXAEBV?$basic_string@
DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 OBJ_nid2obj,函数 "public: static int __cdecl Poco::Crypto::ECKeyImpl::getCurveNID(class std::basic_string<char,struct std::char_traits<char>,class s
td::allocator<char> > &)" (?getCurveNID@ECKeyImpl@Crypto@Poco@@SAHAEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-
release\Crypto\Crypto_vs170.vcxproj]
ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 OBJ_obj2txt,函数 "public: static int __cdecl Poco::Crypto::ECKeyImpl::getCurveNID(class std::basic_string<char,struct std::char_traits<char>,class s
td::allocator<char> > &)" (?getCurveNID@ECKeyImpl@Crypto@Poco@@SAHAEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-
release\Crypto\Crypto_vs170.vcxproj]
ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_get_bits,函数 "public: virtual int __cdecl Poco::Crypto::ECKeyImpl::size(void)const " (?size@ECKeyImpl@Crypto@Poco@@UEBAHXZ) 中 引用了该符号 [D:\My
CodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_set1_EC_KEY,函数 "public: virtual int __cdecl Poco::Crypto::ECKeyImpl::size(void)const " (?size@ECKeyImpl@Crypto@Poco@@UEBAHXZ) 中引用了该符号 [D:
\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_set1_EC_KEY [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_get1_EC_KEY,函数 "public: __cdecl Poco::Crypto::ECKeyImpl::ECKeyImpl(class std::basic_string<char,struct std::char_traits<char>,class std::
allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class
std::allocator<char> > const &)" (??0ECKeyImpl@Crypto@Poco@@QEAA@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3
-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_get1_EC_KEY [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKeyImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
Envelope.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
PKCS12Container.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2019: 无法解析的外部符号 X509_dup,函数 "public: __cdecl Poco::Crypto::X509Certificate::X509Certificate(class Poco::Crypto::X509Certificate const &)" (??0X509Certificat
e@Crypto@Poco@@QEAA@AEBV012@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKeyImpl.obj : error LNK2001: 无法解析的外部符号 X509_dup [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2001: 无法解析的外部符号 X509_dup [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
PKCS12Container.obj : error LNK2001: 无法解析的外部符号 X509_dup [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 X509_dup [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2019: 无法解析的外部符号 X509_get_version,函数 "public: __cdecl Poco::Crypto::X509Certificate::~X509Certificate(void)" (??1X509Certificate@Crypto@Poco@@QEAA@XZ) 中引用了该符
号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKeyImpl.obj : error LNK2001: 无法解析的外部符号 X509_get_version [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2001: 无法解析的外部符号 X509_get_version [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
PKCS12Container.obj : error LNK2001: 无法解析的外部符号 X509_get_version [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 X509_get_version [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 X509_get_pubkey,函数 "public: __cdecl Poco::Crypto::ECKeyImpl::ECKeyImpl(class Poco::Crypto::X509Certificate const &)" (??0ECKeyImpl@Crypto@Poco@@QE
AA@AEBVX509Certificate@12@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2001: 无法解析的外部符号 X509_get_pubkey [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 X509_get_pubkey [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2001: 无法解析的外部符号 X509_get_pubkey [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 PEM_read_bio_PrivateKey,函数 "public: __cdecl Poco::Crypto::ECKeyImpl::ECKeyImpl(class std::basic_istream<char,struct std::char_traits<char> > *,cla
ss std::basic_istream<char,struct std::char_traits<char> > *,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0ECKeyImpl@Crypto@Poco@@Q
EAA@PEAV?$basic_istream@DU?$char_traits@D@std@@@std@@0AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@4@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\
Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2001: 无法解析的外部符号 PEM_read_bio_PrivateKey [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 PEM_read_PrivateKey,函数 "public: __cdecl Poco::Crypto::ECKeyImpl::ECKeyImpl(class std::basic_string<char,struct std::char_traits<char>,class std::a
llocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class s
td::allocator<char> > const &)" (??0ECKeyImpl@Crypto@Poco@@QEAA@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-
release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2001: 无法解析的外部符号 PEM_read_PrivateKey [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 PEM_read_bio_PUBKEY,函数 "public: __cdecl Poco::Crypto::ECKeyImpl::ECKeyImpl(class std::basic_istream<char,struct std::char_traits<char> > *,class s
td::basic_istream<char,struct std::char_traits<char> > *,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0ECKeyImpl@Crypto@Poco@@QEAA@
PEAV?$basic_istream@DU?$char_traits@D@std@@@std@@0AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@4@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Cryp
to_vs170.vcxproj]
EVPPKey.obj : error LNK2001: 无法解析的外部符号 PEM_read_bio_PUBKEY [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 PEM_read_PUBKEY,函数 "public: __cdecl Poco::Crypto::ECKeyImpl::ECKeyImpl(class std::basic_string<char,struct std::char_traits<char>,class std::alloc
ator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::
allocator<char> > const &)" (??0ECKeyImpl@Crypto@Poco@@QEAA@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-rele
ase\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2001: 无法解析的外部符号 PEM_read_PUBKEY [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
Envelope.obj : error LNK2019: 无法解析的外部符号 EVP_CIPHER_get_nid,函数 "public: int __cdecl Poco::Crypto::Envelope::cipherNID(void)const " (?cipherNID@Envelope@Crypto@Poco@@QEBAHXZ) 中 引用了该符号 [D:\My
CodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
Envelope.obj : error LNK2019: 无法解析的外部符号 EVP_EncryptUpdate,函数 "public: class std::vector<unsigned char,class std::allocator<unsigned char> > const & __cdecl Poco::Crypto::Envelope::seal(cl
ass std::vector<unsigned char,class std::allocator<unsigned char> > const &)" (?seal@Envelope@Crypto@Poco@@QEAAAEBV?$vector@EV?$allocator@E@std@@@std@@AEBV45@@Z) 中引用了该符号 [D:\MyCodeBase\gi
tInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
Envelope.obj : error LNK2019: 无法解析的外部符号 EVP_DecryptUpdate,函数 "public: class std::vector<unsigned char,class std::allocator<unsigned char> > __cdecl Poco::Crypto::Envelope::open(class Poco
::Crypto::EVPPKey const &,class std::vector<unsigned char,class std::allocator<unsigned char> > const &,class std::vector<unsigned char,class std::allocator<unsigned char> > const &)" (?o
pen@Envelope@Crypto@Poco@@QEAA?AV?$vector@EV?$allocator@E@std@@@std@@AEBVEVPPKey@23@AEBV45@1@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
Envelope.obj : error LNK2019: 无法解析的外部符号 EVP_OpenInit,函数 "public: class std::vector<unsigned char,class std::allocator<unsigned char> > __cdecl Poco::Crypto::Envelope::open(class Poco::Cry
pto::EVPPKey const &,class std::vector<unsigned char,class std::allocator<unsigned char> > const &,class std::vector<unsigned char,class std::allocator<unsigned char> > const &)" (?open@E
nvelope@Crypto@Poco@@QEAA?AV?$vector@EV?$allocator@E@std@@@std@@AEBVEVPPKey@23@AEBV45@1@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
Envelope.obj : error LNK2019: 无法解析的外部符号 EVP_OpenFinal,函数 "public: class std::vector<unsigned char,class std::allocator<unsigned char> > __cdecl Poco::Crypto::Envelope::open(class Poco::Cr
ypto::EVPPKey const &,class std::vector<unsigned char,class std::allocator<unsigned char> > const &,class std::vector<unsigned char,class std::allocator<unsigned char> > const &)" (?open@
Envelope@Crypto@Poco@@QEAA?AV?$vector@EV?$allocator@E@std@@@std@@AEBVEVPPKey@23@AEBV45@1@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
Envelope.obj : error LNK2019: 无法解析的外部符号 EVP_SealInit,函数 "public: class std::vector<unsigned char,class std::allocator<unsigned char> > const & __cdecl Poco::Crypto::Envelope::seal(class s
td::vector<unsigned char,class std::allocator<unsigned char> > const &)" (?seal@Envelope@Crypto@Poco@@QEAAAEBV?$vector@EV?$allocator@E@std@@@std@@AEBV45@@Z) 中引用了该符号 [D:\MyCodeBase\gitInte
rest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
Envelope.obj : error LNK2019: 无法解析的外部符号 EVP_SealFinal,函数 "public: class std::vector<unsigned char,class std::allocator<unsigned char> > const & __cdecl Poco::Crypto::Envelope::seal(class
std::vector<unsigned char,class std::allocator<unsigned char> > const &)" (?seal@Envelope@Crypto@Poco@@QEAAAEBV?$vector@EV?$allocator@E@std@@@std@@AEBV45@@Z) 中引用了该符号 [D:\MyCodeBase\gitInt
erest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
Envelope.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_get_size,函数 "public: void __cdecl Poco::Crypto::Envelope::addKey(class Poco::Crypto::EVPPKey const &)" (?addKey@Envelope@Crypto@Poco@@QEAA
XAEBVEVPPKey@23@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPCipherImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_get_size [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPCipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_CTX_new,函数 "public: __cdecl Poco::Crypto::`anonymous namespace'::EVPPKeyContext::EVPPKeyContext(struct evp_pkey_st const *)" (??0EVPP
KeyContext@?A0x8009e427@Crypto@Poco@@QEAA@PEBUevp_pkey_st@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPCipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_CTX_free,函数 "public: __cdecl Poco::Crypto::`anonymous namespace'::EVPPKeyContext::~EVPPKeyContext(void)" (??1EVPPKeyContext@?A0x8009e
427@Crypto@Poco@@QEAA@XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_CTX_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPCipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_encrypt_init,函数 "public: __cdecl Poco::Crypto::`anonymous namespace'::EVPEncryptImpl::EVPEncryptImpl(struct evp_pkey_st const *)" (??
0EVPEncryptImpl@?A0x8009e427@Crypto@Poco@@QEAA@PEBUevp_pkey_st@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPCipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_encrypt,函数 "public: virtual __int64 __cdecl Poco::Crypto::`anonymous namespace'::EVPEncryptImpl::finalize(unsigned char *,__int64)" (
?finalize@EVPEncryptImpl@?A0x8009e427@Crypto@Poco@@UEAA_JPEAE_J@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPCipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_decrypt_init,函数 "public: __cdecl Poco::Crypto::`anonymous namespace'::EVPDecryptImpl::EVPDecryptImpl(struct evp_pkey_st const *)" (??
0EVPDecryptImpl@?A0x8009e427@Crypto@Poco@@QEAA@PEBUevp_pkey_st@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPCipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_decrypt,函数 "public: virtual __int64 __cdecl Poco::Crypto::`anonymous namespace'::EVPDecryptImpl::finalize(unsigned char *,__int64)" (
?finalize@EVPDecryptImpl@?A0x8009e427@Crypto@Poco@@UEAA_JPEAE_J@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2019: 无法解析的外部符号 BIO_s_file,函数 "public: void __cdecl Poco::Crypto::EVPPKey::save(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char
> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator
<char> > const &)const " (?save@EVPPKey@Crypto@Poco@@QEBAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-releas
e\Crypto\Crypto_vs170.vcxproj]
RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 BIO_s_file [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2001: 无法解析的外部符号 BIO_s_file [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2019: 无法解析的外部符号 BIO_new,函数 "public: void __cdecl Poco::Crypto::EVPPKey::save(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >
const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<ch
ar> > const &)const " (?save@EVPPKey@Crypto@Poco@@QEBAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\C
rypto\Crypto_vs170.vcxproj]
RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 BIO_new [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2001: 无法解析的外部符号 BIO_new [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2019: 无法解析的外部符号 BIO_ctrl,函数 "public: void __cdecl Poco::Crypto::EVPPKey::save(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char>
> const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<c
har> > const &)const " (?save@EVPPKey@Crypto@Poco@@QEBAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\
Crypto\Crypto_vs170.vcxproj]
RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 BIO_ctrl [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2001: 无法解析的外部符号 BIO_ctrl [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2019: 无法解析的外部符号 BIO_s_mem,函数 "public: void __cdecl Poco::Crypto::EVPPKey::save(class std::basic_ostream<char,struct std::char_traits<char> > *,class std::basic_ostr
eam<char,struct std::char_traits<char> > *,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)const " (?save@EVPPKey@Crypto@Poco@@QEBAXPEAV?$b
asic_ostream@DU?$char_traits@D@std@@@std@@0AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@5@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs17
0.vcxproj]
RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 BIO_s_mem [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2001: 无法解析的外部符号 BIO_s_mem [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_CTX_set_ec_paramgen_curve_nid,函数 "public: __cdecl Poco::Crypto::EVPPKey::EVPPKey(int,int)" (??0EVPPKey@Crypto@Poco@@QEAA@HH@Z) 中引用了该符号 [D:\
MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2019: 无法解析的外部符号 BN_clear_free,函数 "struct ossl_param_st * __cdecl Poco::Crypto::getKeyParameters(class std::vector<unsigned char,class std::allocator<unsigned char>
> const *,class std::vector<unsigned char,class std::allocator<unsigned char> > const *)" (?getKeyParameters@Crypto@Poco@@YAPEAUossl_param_st@@PEBV?$vector@EV?$allocator@E@std@@@std@@0@Z)
中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2019: 无法解析的外部符号 OSSL_PARAM_free,函数 "public: __cdecl Poco::Crypto::EVPPKey::EVPPKey(class std::vector<unsigned char,class std::allocator<unsigned char> > const *,cla
ss std::vector<unsigned char,class std::allocator<unsigned char> > const *,unsigned long,int)" (??0EVPPKey@Crypto@Poco@@QEAA@PEBV?$vector@EV?$allocator@E@std@@@std@@0KH@Z) 中引用了该符号 [D:\MyC
odeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_CTX_set_rsa_keygen_bits,函数 "public: __cdecl Poco::Crypto::EVPPKey::EVPPKey(int,int)" (??0EVPPKey@Crypto@Poco@@QEAA@HH@Z) 中引用 了该符号 [D:\MyCode
Base\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2019: 无法解析的外部符号 RSA_free,函数 "public: static struct evp_pkey_st * __cdecl Poco::Crypto::EVPPKey::duplicate(struct evp_pkey_st const *,struct evp_pkey_st * *)" (?dupl
icate@EVPPKey@Crypto@Poco@@SAPEAUevp_pkey_st@@PEBU4@PEAPEAU4@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 RSA_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2019: 无法解析的外部符号 EVP_des_ede3_cbc,函数 "public: void __cdecl Poco::Crypto::EVPPKey::save(class std::basic_string<char,struct std::char_traits<char>,class std::allocato
r<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::all
ocator<char> > const &)const " (?save@EVPPKey@Crypto@Poco@@QEBAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-
release\Crypto\Crypto_vs170.vcxproj]
RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 EVP_des_ede3_cbc [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_set1_RSA,函数 "public: static struct evp_pkey_st * __cdecl Poco::Crypto::EVPPKey::duplicate(struct evp_pkey_st const *,struct evp_pkey_st * *
)" (?duplicate@EVPPKey@Crypto@Poco@@SAPEAUevp_pkey_st@@PEBU4@PEAPEAU4@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_get1_RSA,函数 "public: static struct evp_pkey_st * __cdecl Poco::Crypto::EVPPKey::duplicate(struct evp_pkey_st const *,struct evp_pkey_st * *
)" (?duplicate@EVPPKey@Crypto@Poco@@SAPEAUevp_pkey_st@@PEBU4@PEAPEAU4@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_get1_RSA [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_copy_parameters,函数 "public: static struct evp_pkey_st * __cdecl Poco::Crypto::EVPPKey::duplicate(struct evp_pkey_st const *,struct evp_pkey
_st * *)" (?duplicate@EVPPKey@Crypto@Poco@@SAPEAUevp_pkey_st@@PEBU4@PEAPEAU4@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_cmp_parameters,函数 "public: static struct evp_pkey_st * __cdecl Poco::Crypto::EVPPKey::duplicate(struct evp_pkey_st const *,struct evp_pkey_
st * *)" (?duplicate@EVPPKey@Crypto@Poco@@SAPEAUevp_pkey_st@@PEBU4@PEAPEAU4@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_CTX_new_id,函数 "public: __cdecl Poco::Crypto::EVPPKey::EVPPKey(int,int)" (??0EVPPKey@Crypto@Poco@@QEAA@HH@Z) 中引用了该符号 [D:\MyCodeBase\gitInter
est\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_fromdata_init,函数 "private: void __cdecl Poco::Crypto::EVPPKey::setKeyFromParameters(struct ossl_param_st *)" (?setKeyFromParameters@EVPPKey
@Crypto@Poco@@AEAAXPEAUossl_param_st@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_fromdata,函数 "private: void __cdecl Poco::Crypto::EVPPKey::setKeyFromParameters(struct ossl_param_st *)" (?setKeyFromParameters@EVPPKey@Cryp
to@Poco@@AEAAXPEAUossl_param_st@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_keygen_init,函数 "public: __cdecl Poco::Crypto::EVPPKey::EVPPKey(int,int)" (??0EVPPKey@Crypto@Poco@@QEAA@HH@Z) 中引用了该符号 [D:\MyCodeBase\gitInte
rest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_generate,函数 "public: __cdecl Poco::Crypto::EVPPKey::EVPPKey(int,int)" (??0EVPPKey@Crypto@Poco@@QEAA@HH@Z) 中引用了该符号 [D:\MyCodeBase\gitInteres
t\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2019: 无法解析的外部符号 PEM_write_bio_PrivateKey,函数 "public: void __cdecl Poco::Crypto::EVPPKey::save(class std::basic_string<char,struct std::char_traits<char>,class std::
allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class
std::allocator<char> > const &)const " (?save@EVPPKey@Crypto@Poco@@QEBAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco
-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2019: 无法解析的外部符号 PEM_write_bio_PUBKEY,函数 "public: void __cdecl Poco::Crypto::EVPPKey::save(class std::basic_string<char,struct std::char_traits<char>,class std::allo
cator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std:
:allocator<char> > const &)const " (?save@EVPPKey@Crypto@Poco@@QEBAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.1
3.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2019: 无法解析的外部符号 OSSL_PARAM_BLD_new,函数 "struct ossl_param_st * __cdecl Poco::Crypto::getKeyParameters(class std::vector<unsigned char,class std::allocator<unsigned c
har> > const *,class std::vector<unsigned char,class std::allocator<unsigned char> > const *)" (?getKeyParameters@Crypto@Poco@@YAPEAUossl_param_st@@PEBV?$vector@EV?$allocator@E@std@@@std@
@0@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2019: 无法解析的外部符号 OSSL_PARAM_BLD_to_param,函数 "struct ossl_param_st * __cdecl Poco::Crypto::getKeyParameters(class std::vector<unsigned char,class std::allocator<unsig
ned char> > const *,class std::vector<unsigned char,class std::allocator<unsigned char> > const *)" (?getKeyParameters@Crypto@Poco@@YAPEAUossl_param_st@@PEBV?$vector@EV?$allocator@E@std@@
@std@@0@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2019: 无法解析的外部符号 OSSL_PARAM_BLD_free,函数 "struct ossl_param_st * __cdecl Poco::Crypto::getKeyParameters(class std::vector<unsigned char,class std::allocator<unsigned
char> > const *,class std::vector<unsigned char,class std::allocator<unsigned char> > const *)" (?getKeyParameters@Crypto@Poco@@YAPEAUossl_param_st@@PEBV?$vector@EV?$allocator@E@std@@@std
@@0@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2019: 无法解析的外部符号 OSSL_PARAM_BLD_push_ulong,函数 "struct ossl_param_st * __cdecl Poco::Crypto::getKeyParameters(class std::vector<unsigned char,class std::allocator<uns
igned char> > const *,class std::vector<unsigned char,class std::allocator<unsigned char> > const *)" (?getKeyParameters@Crypto@Poco@@YAPEAUossl_param_st@@PEBV?$vector@EV?$allocator@E@std
@@@std@@0@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
EVPPKey.obj : error LNK2019: 无法解析的外部符号 OSSL_PARAM_BLD_push_BN,函数 "void __cdecl Poco::Crypto::pushBuildParamBignum(struct ossl_param_bld_st *,char const *,class std::vector<unsigned char,c
lass std::allocator<unsigned char> > const &,struct bignum_st * *)" (?pushBuildParamBignum@Crypto@Poco@@YAXPEAUossl_param_bld_st@@PEBDAEBV?$vector@EV?$allocator@E@std@@@std@@PEAPEAUbignum
_st@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
OpenSSLInitializer.obj : error LNK2019: 无法解析的外部符号 CONF_modules_load,函数 "public: static void __cdecl Poco::Crypto::OpenSSLInitializer::initialize(void)" (?initialize@OpenSSLInitializer@Cry
pto@Poco@@SAXXZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
PKCS12Container.obj : error LNK2019: 无法解析的外部符号 OPENSSL_sk_num,函数 "private: void __cdecl Poco::Crypto::PKCS12Container::load(struct PKCS12_st *,class std::basic_string<char,struct std::cha
r_traits<char>,class std::allocator<char> > const &)" (?load@PKCS12Container@Crypto@Poco@@AEAAXPEAUPKCS12_st@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) 中引用了 该符号
[D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2001: 无法解析的外部符号 OPENSSL_sk_num [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
PKCS12Container.obj : error LNK2019: 无法解析的外部符号 OPENSSL_sk_value,函数 "private: void __cdecl Poco::Crypto::PKCS12Container::load(struct PKCS12_st *,class std::basic_string<char,struct std::c
har_traits<char>,class std::allocator<char> > const &)" (?load@PKCS12Container@Crypto@Poco@@AEAAXPEAUPKCS12_st@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) 中引用 了该符
号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2001: 无法解析的外部符号 OPENSSL_sk_value [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
PKCS12Container.obj : error LNK2019: 无法解析的外部符号 OPENSSL_sk_pop_free,函数 "private: void __cdecl Poco::Crypto::PKCS12Container::load(struct PKCS12_st *,class std::basic_string<char,struct std
::char_traits<char>,class std::allocator<char> > const &)" (?load@PKCS12Container@Crypto@Poco@@AEAAXPEAUPKCS12_st@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) 中引用
了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
PKCS12Container.obj : error LNK2019: 无法解析的外部符号 X509_free,函数 "private: void __cdecl Poco::Crypto::PKCS12Container::load(struct PKCS12_st *,class std::basic_string<char,struct std::char_tra
its<char>,class std::allocator<char> > const &)" (?load@PKCS12Container@Crypto@Poco@@AEAAXPEAUPKCS12_st@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) 中引用了该符号 [D:\M
yCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2001: 无法解析的外部符号 X509_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
PKCS12Container.obj : error LNK2019: 无法解析的外部符号 X509_alias_get0,函数 "private: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl Poco::Crypto::P
KCS12Container::extractFriendlyName(struct x509_st *)" (?extractFriendlyName@PKCS12Container@Crypto@Poco@@AEAA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEAUx509_st@@
@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
PKCS12Container.obj : error LNK2019: 无法解析的外部符号 PKCS12_free,函数 "private: void __cdecl Poco::Crypto::PKCS12Container::load(struct PKCS12_st *,class std::basic_string<char,struct std::char_t
raits<char>,class std::allocator<char> > const &)" (?load@PKCS12Container@Crypto@Poco@@AEAAXPEAUPKCS12_st@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) 中引用了该符号 [D:
\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
PKCS12Container.obj : error LNK2019: 无法解析的外部符号 PKCS12_parse,函数 "private: void __cdecl Poco::Crypto::PKCS12Container::load(struct PKCS12_st *,class std::basic_string<char,struct std::char_
traits<char>,class std::allocator<char> > const &)" (?load@PKCS12Container@Crypto@Poco@@AEAAXPEAUPKCS12_st@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) 中引用了该 符号 [D
:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
PKCS12Container.obj : error LNK2019: 无法解析的外部符号 d2i_PKCS12_bio,函数 "public: __cdecl Poco::Crypto::PKCS12Container::PKCS12Container(class std::basic_istream<char,struct std::char_traits<char
> > &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0PKCS12Container@Crypto@Poco@@QEAA@AEAV?$basic_istream@DU?$char_traits@D@std@@@s
td@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@4@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
PKCS12Container.obj : error LNK2019: 无法解析的外部符号 d2i_PKCS12_fp,函数 "public: __cdecl Poco::Crypto::PKCS12Container::PKCS12Container(class std::basic_string<char,struct std::char_traits<char>,
class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0PKCS12Container@Crypto@Poco@@QEAA@AEBV?$basic_st
ring@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSACipherImpl.obj : error LNK2019: 无法解析的外部符号 RSA_size,函数 "public: virtual unsigned __int64 __cdecl Poco::Crypto::`anonymous namespace'::RSADecryptImpl::blockSize(void)const " (?blockSize@
RSADecryptImpl@?A0xf365f1d8@Crypto@Poco@@UEBA_KXZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 RSA_size [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSACipherImpl.obj : error LNK2019: 无法解析的外部符号 RSA_public_encrypt,函数 "public: virtual __int64 __cdecl Poco::Crypto::`anonymous namespace'::RSAEncryptImpl::finalize(unsigned char *,__int64)"
(?finalize@RSAEncryptImpl@?A0xf365f1d8@Crypto@Poco@@UEAA_JPEAE_J@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSACipherImpl.obj : error LNK2019: 无法解析的外部符号 RSA_private_decrypt,函数 "public: virtual __int64 __cdecl Poco::Crypto::`anonymous namespace'::RSADecryptImpl::finalize(unsigned char *,__int64)
" (?finalize@RSADecryptImpl@?A0xf365f1d8@Crypto@Poco@@UEAA_JPEAE_J@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSADigestEngine.obj : error LNK2019: 无法解析的外部符号 RSA_sign,函数 "public: class std::vector<unsigned char,class std::allocator<unsigned char> > const & __cdecl Poco::Crypto::RSADigestEngine::si
gnature(void)" (?signature@RSADigestEngine@Crypto@Poco@@QEAAAEBV?$vector@EV?$allocator@E@std@@@std@@XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcx
proj]
RSADigestEngine.obj : error LNK2019: 无法解析的外部符号 RSA_verify,函数 "public: bool __cdecl Poco::Crypto::RSADigestEngine::verify(class std::vector<unsigned char,class std::allocator<unsigned char
> > const &)" (?verify@RSADigestEngine@Crypto@Poco@@QEAA_NAEBV?$vector@EV?$allocator@E@std@@@std@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxpr
oj]
RSAKeyImpl.obj : error LNK2019: 无法解析的外部符号 BN_new,函数 "public: __cdecl Poco::Crypto::RSAKeyImpl::RSAKeyImpl(int,unsigned long)" (??0RSAKeyImpl@Crypto@Poco@@QEAA@HK@Z) 中引用了该 符号 [D:\MyCodeBase
\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSAKeyImpl.obj : error LNK2019: 无法解析的外部符号 BN_set_word,函数 "public: __cdecl Poco::Crypto::RSAKeyImpl::RSAKeyImpl(int,unsigned long)" (??0RSAKeyImpl@Crypto@Poco@@QEAA@HK@Z) 中引用了该符号 [D:\MyCod
eBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSAKeyImpl.obj : error LNK2019: 无法解析的外部符号 BN_free,函数 "public: __cdecl Poco::Crypto::RSAKeyImpl::RSAKeyImpl(int,unsigned long)" (??0RSAKeyImpl@Crypto@Poco@@QEAA@HK@Z) 中引用了该符号 [D:\MyCodeBas
e\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2001: 无法解析的外部符号 BN_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSAKeyImpl.obj : error LNK2019: 无法解析的外部符号 RSA_new,函数 "public: __cdecl Poco::Crypto::RSAKeyImpl::RSAKeyImpl(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<
char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::alloc
ator<char> > const &)" (??0RSAKeyImpl@Crypto@Poco@@QEAA@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\
Crypto\Crypto_vs170.vcxproj]
RSAKeyImpl.obj : error LNK2019: 无法解析的外部符号 RSA_get0_key,函数 "public: class std::vector<unsigned char,class std::allocator<unsigned char> > __cdecl Poco::Crypto::RSAKeyImpl::decryptionExpone
nt(void)const " (?decryptionExponent@RSAKeyImpl@Crypto@Poco@@QEBA?AV?$vector@EV?$allocator@E@std@@@std@@XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170
.vcxproj]
RSAKeyImpl.obj : error LNK2019: 无法解析的外部符号 RSA_generate_key_ex,函数 "public: __cdecl Poco::Crypto::RSAKeyImpl::RSAKeyImpl(int,unsigned long)" (??0RSAKeyImpl@Crypto@Poco@@QEAA@HK@Z) 中引用了该符号 [
D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSAKeyImpl.obj : error LNK2019: 无法解析的外部符号 PEM_read_bio_RSAPrivateKey,函数 "public: __cdecl Poco::Crypto::RSAKeyImpl::RSAKeyImpl(class std::basic_string<char,struct std::char_traits<char>,cl
ass std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<cha
r>,class std::allocator<char> > const &)" (??0RSAKeyImpl@Crypto@Poco@@QEAA@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-p
oco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSAKeyImpl.obj : error LNK2019: 无法解析的外部符号 PEM_write_bio_RSAPrivateKey,函数 "public: virtual void __cdecl Poco::Crypto::RSAKeyImpl::save(class std::basic_string<char,struct std::char_traits<
char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_tr
aits<char>,class std::allocator<char> > const &)const " (?save@RSAKeyImpl@Crypto@Poco@@UEBAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) 中引用了该符号 [D:\MyCodeBase\g
itInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSAKeyImpl.obj : error LNK2019: 无法解析的外部符号 PEM_read_bio_RSAPublicKey,函数 "public: __cdecl Poco::Crypto::RSAKeyImpl::RSAKeyImpl(class std::basic_string<char,struct std::char_traits<char>,cla
ss std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char
>,class std::allocator<char> > const &)" (??0RSAKeyImpl@Crypto@Poco@@QEAA@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-po
co-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSAKeyImpl.obj : error LNK2019: 无法解析的外部符号 PEM_write_bio_RSAPublicKey,函数 "public: virtual void __cdecl Poco::Crypto::RSAKeyImpl::save(class std::basic_string<char,struct std::char_traits<c
har>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_tra
its<char>,class std::allocator<char> > const &)const " (?save@RSAKeyImpl@Crypto@Poco@@UEBAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) 中引用了该符号 [D:\MyCodeBase\gi
tInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
RSAKeyImpl.obj : error LNK2019: 无法解析的外部符号 PEM_read_bio_RSA_PUBKEY,函数 "public: __cdecl Poco::Crypto::RSAKeyImpl::RSAKeyImpl(class std::basic_string<char,struct std::char_traits<char>,class
std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,
class std::allocator<char> > const &)" (??0RSAKeyImpl@Crypto@Poco@@QEAA@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco
-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2019: 无法解析的外部符号 BIO_new_file,函数 "public: static class std::vector<class Poco::Crypto::X509Certificate,class std::allocator<class Poco::Crypto::X509Certifica
te> > __cdecl Poco::Crypto::X509Certificate::readPEM(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?readPEM@X509Certificate@Crypto@Poc
o@@SA?AV?$vector@VX509Certificate@Crypto@Poco@@V?$allocator@VX509Certificate@Crypto@Poco@@@std@@@std@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@5@@Z) 中引用了该符号 [D:\MyCodeB
ase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2019: 无法解析的外部符号 BN_bn2hex,函数 "protected: void __cdecl Poco::Crypto::X509Certificate::init(void)" (?init@X509Certificate@Crypto@Poco@@IEAAXXZ) 中 引用了该符号 [D:\My
CodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2019: 无法解析的外部符号 ASN1_STRING_length,函数 "public: void __cdecl Poco::Crypto::X509Certificate::extractNames(class std::basic_string<char,struct std::char_traits
<char>,class std::allocator<char> > &,class std::set<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,struct std::less<class std::basic_string<char,
struct std::char_traits<char>,class std::allocator<char> > >,class std::allocator<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > > > &)const " (?e
xtractNames@X509Certificate@Crypto@Poco@@QEBAXAEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAV?$set@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$l
ess@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@5@@Z) 中引用了该符号 [D:\MyCodeBase\gitInteres
t\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2019: 无法解析的外部符号 ASN1_STRING_get0_data,函数 "public: void __cdecl Poco::Crypto::X509Certificate::extractNames(class std::basic_string<char,struct std::char_tra
its<char>,class std::allocator<char> > &,class std::set<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,struct std::less<class std::basic_string<ch
ar,struct std::char_traits<char>,class std::allocator<char> > >,class std::allocator<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > > > &)const "
(?extractNames@X509Certificate@Crypto@Poco@@QEBAXAEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAV?$set@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U
?$less@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@5@@Z) 中引用了该符号 [D:\MyCodeBase\gitInte
rest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2019: 无法解析的外部符号 ASN1_INTEGER_to_BN,函数 "protected: void __cdecl Poco::Crypto::X509Certificate::init(void)" (?init@X509Certificate@Crypto@Poco@@IEAAXXZ) 中引用了该
符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2019: 无法解析的外部符号 OBJ_nid2ln,函数 "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl Poco::Crypto::X509Cer
tificate::signatureAlgorithm(void)const " (?signatureAlgorithm@X509Certificate@Crypto@Poco@@QEBA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ) 中引用了该符号 [D:\MyCodeBase\
gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2019: 无法解析的外部符号 X509_verify,函数 "public: bool __cdecl Poco::Crypto::X509Certificate::issuedBy(class Poco::Crypto::X509Certificate const &)const " (?issuedBy@
X509Certificate@Crypto@Poco@@QEBA_NAEBV123@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2019: 无法解析的外部符号 X509_digest,函数 "public: class std::vector<unsigned char,class std::allocator<unsigned char> > __cdecl Poco::Crypto::X509Certificate::fingerp
rint(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)const " (?fingerprint@X509Certificate@Crypto@Poco@@QEBA?AV?$vector@EV?$allocator@E@std
@@@std@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@5@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2019: 无法解析的外部符号 X509_get_signature_nid,函数 "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl Poco::Cry
pto::X509Certificate::signatureAlgorithm(void)const " (?signatureAlgorithm@X509Certificate@Crypto@Poco@@QEBA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ) 中引用了该符号 [D:
\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2019: 无法解析的外部符号 X509_get_serialNumber,函数 "protected: void __cdecl Poco::Crypto::X509Certificate::init(void)" (?init@X509Certificate@Crypto@Poco@@IEAAXXZ) 中引
用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2019: 无法解析的外部符号 X509_get_issuer_name,函数 "protected: void __cdecl Poco::Crypto::X509Certificate::init(void)" (?init@X509Certificate@Crypto@Poco@@IEAAXXZ) 中引用
了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2019: 无法解析的外部符号 X509_get_subject_name,函数 "protected: void __cdecl Poco::Crypto::X509Certificate::init(void)" (?init@X509Certificate@Crypto@Poco@@IEAAXXZ) 中引
用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2019: 无法解析的外部符号 X509_get0_notBefore,函数 "public: class Poco::DateTime __cdecl Poco::Crypto::X509Certificate::validFrom(void)const " (?validFrom@X509Certifica
te@Crypto@Poco@@QEBA?AVDateTime@3@XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2019: 无法解析的外部符号 X509_get0_notAfter,函数 "public: class Poco::DateTime __cdecl Poco::Crypto::X509Certificate::expiresOn(void)const " (?expiresOn@X509Certificat
e@Crypto@Poco@@QEBA?AVDateTime@3@XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2019: 无法解析的外部符号 X509_up_ref,函数 "public: __cdecl Poco::Crypto::X509Certificate::X509Certificate(struct x509_st *,bool)" (??0X509Certificate@Crypto@Poco@@QEAA
@PEAUx509_st@@_N@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2019: 无法解析的外部符号 X509_cmp,函数 "public: bool __cdecl Poco::Crypto::X509Certificate::equals(class Poco::Crypto::X509Certificate const &)const " (?equals@X509Cer
tificate@Crypto@Poco@@QEBA_NAEBV123@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2019: 无法解析的外部符号 X509_NAME_print_ex,函数 "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl Poco::Crypto::_X509_N
AME_oneline_utf8(struct X509_name_st *)" (?_X509_NAME_oneline_utf8@Crypto@Poco@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEAUX509_name_st@@@Z) 中引用了该符号 [D:\MyCodeB
ase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2019: 无法解析的外部符号 X509_NAME_get_text_by_NID,函数 "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl Poco::
Crypto::X509Certificate::issuerName(enum Poco::Crypto::X509Certificate::NID)const " (?issuerName@X509Certificate@Crypto@Poco@@QEBA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2
@@std@@W4NID@123@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2019: 无法解析的外部符号 X509_get_ext_d2i,函数 "public: void __cdecl Poco::Crypto::X509Certificate::extractNames(class std::basic_string<char,struct std::char_traits<c
har>,class std::allocator<char> > &,class std::set<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,struct std::less<class std::basic_string<char,st
ruct std::char_traits<char>,class std::allocator<char> > >,class std::allocator<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > > > &)const " (?ext
ractNames@X509Certificate@Crypto@Poco@@QEBAXAEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAV?$set@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$les
s@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@5@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\
poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
X509Certificate.obj : error LNK2019: 无法解析的外部符号 PEM_read_bio_X509,函数 "protected: void __cdecl Poco::Crypto::X509Certificate::load(class std::basic_istream<char,struct std::char_traits<char
> > &)" (?load@X509Certificate@Crypto@Poco@@IEAAXAEAV?$basic_istream@DU?$char_traits@D@std@@@std@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxpr
oj]
X509Certificate.obj : error LNK2019: 无法解析的外部符号 PEM_write_bio_X509,函数 "public: void __cdecl Poco::Crypto::X509Certificate::save(class std::basic_ostream<char,struct std::char_traits<char>
> &)const " (?save@X509Certificate@Crypto@Poco@@QEBAXAEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.v
cxproj]
X509Certificate.obj : error LNK2019: 无法解析的外部符号 GENERAL_NAMES_free,函数 "public: void __cdecl Poco::Crypto::X509Certificate::extractNames(class std::basic_string<char,struct std::char_traits
<char>,class std::allocator<char> > &,class std::set<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,struct std::less<class std::basic_string<char,
struct std::char_traits<char>,class std::allocator<char> > >,class std::allocator<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > > > &)const " (?e
xtractNames@X509Certificate@Crypto@Poco@@QEBAXAEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAV?$set@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$l
ess@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@5@@Z) 中引用了该符号 [D:\MyCodeBase\gitInteres
t\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
..\bin64\PocoCrypto64.dll : fatal error LNK1120: 160 个无法解析的外部命令 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
Same problem encountered when building. My Environment: Win 10 VS2022 OpenSSL version: 3.3.1 but my Poco lib and Open SSL is all download from vcpkg, some reason make me to build from source to identify something, I don't know whether it will have affect compare with download from offical site.
My steps:
- build and install OpenSSL according to NOTES-WINDOWS.md for me I install OpenSSL in
C:\Program Files\OpenSSL- build Poco by buildwin.ps1:
.\buildwin.ps1 -vs 170 -action build -linkmode shared -config release -platform x64 -components "Foundation,Util,XML,JSON,Net,NetSSL_OpenSSL,Crypto" -openssl_base "C:\Program Files\OpenSSL"when it comes to compile Crypto_v170.vscxproj it swarm with linkage error, I have no idea why it not identfiy the openssl lib path.
Net_vs170.vcxproj -> D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\bin64\PocoNet64.dll +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | Building D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ &"D:\UnportableSoftware\Microsoft Visual Studio\2022\Community\MSBuild\Current\Bin\MSBuild.exe" D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj /nologo /m /t:build /p:Configuration=release_shared /p:BuildProjectReferences=false /p:Platform=x64 /p:useenv=True /v:minimal 正在创建库 ..\lib64\PocoCrypto.lib 和对象 ..\lib64\PocoCrypto.exp CipherFactory.obj : error LNK2019: 无法解析的外部符号 OSSL_PROVIDER_load,函数 "public: __cdecl Poco::Crypto::CipherFactory::CipherFactory(void)" (??0CipherFactory@Crypto@Poco@@QEAA@XZ) 中引用了该符号 [D:\M yCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] OpenSSLInitializer.obj : error LNK2001: 无法解析的外部符号 OSSL_PROVIDER_load [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSACipherImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_type [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSADigestEngine.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_type [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSAKey.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_type [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_type [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] Envelope.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_type [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPCipherImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_type [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_type [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] PKCS12Container.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_type [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] CipherFactory.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_type [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECDSADigestEngine.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_type [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKey.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_type [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKeyImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_type [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSACipherImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_get_base_id [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSADigestEngine.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_get_base_id [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSAKey.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_get_base_id [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_get_base_id [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] Envelope.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_get_base_id [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPCipherImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_get_base_id [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_get_base_id [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] PKCS12Container.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_get_base_id [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] CipherFactory.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_get_base_id [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECDSADigestEngine.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_get_base_id [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKey.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_get_base_id [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKeyImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_get_base_id [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSACipherImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_eq [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSADigestEngine.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_eq [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSAKey.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_eq [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_eq [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] Envelope.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_eq [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPCipherImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_eq [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_eq [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] PKCS12Container.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_eq [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] CipherFactory.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_eq [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECDSADigestEngine.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_eq [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKey.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_eq [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKeyImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_eq [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] Envelope.obj : error LNK2001: 无法解析的外部符号 ERR_get_error [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPCipherImpl.obj : error LNK2001: 无法解析的外部符号 ERR_get_error [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2001: 无法解析的外部符号 ERR_get_error [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSACipherImpl.obj : error LNK2001: 无法解析的外部符号 ERR_get_error [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] CipherImpl.obj : error LNK2001: 无法解析的外部符号 ERR_get_error [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] CipherKeyImpl.obj : error LNK2001: 无法解析的外部符号 ERR_get_error [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] CryptoException.obj : error LNK2001: 无法解析的外部符号 ERR_get_error [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKeyImpl.obj : error LNK2001: 无法解析的外部符号 ERR_get_error [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] Envelope.obj : error LNK2001: 无法解析的外部符号 ERR_error_string [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPCipherImpl.obj : error LNK2001: 无法解析的外部符号 ERR_error_string [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2001: 无法解析的外部符号 ERR_error_string [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSACipherImpl.obj : error LNK2001: 无法解析的外部符号 ERR_error_string [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] CipherImpl.obj : error LNK2001: 无法解析的外部符号 ERR_error_string [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] CipherKeyImpl.obj : error LNK2001: 无法解析的外部符号 ERR_error_string [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] CryptoException.obj : error LNK2001: 无法解析的外部符号 ERR_error_string [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKeyImpl.obj : error LNK2001: 无法解析的外部符号 ERR_error_string [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] CipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_CIPHER_get_iv_length,函数 "public: __cdecl Poco::Crypto::`anonymous namespace'::CryptoTransformImpl::CryptoTransformImpl(struct evp_cipher_st c onst *,class std::vector<unsigned char,class std::allocator<unsigned char> > const &,class std::vector<unsigned char,class std::allocator<unsigned char> > const &,enum Poco::Crypto::A0xca 650916::CryptoTransformImpl::Direction)" (??0CryptoTransformImpl@?A0xca650916@Crypto@Poco@@QEAA@PEBUevp_cipher_st@@AEBV?$vector@EV?$allocator@E@std@@@std@@1W4Direction@0123@@Z) 中引用了该 符号 [D :\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] CipherKeyImpl.obj : error LNK2001: 无法解析的外部符号 EVP_CIPHER_get_iv_length [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] Envelope.obj : error LNK2001: 无法解析的外部符号 EVP_CIPHER_get_iv_length [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] CipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_CIPHER_get_mode,函数 "public: __cdecl Poco::Crypto::`anonymous namespace'::CryptoTransformImpl::CryptoTransformImpl(struct evp_cipher_st const *,class std::vector<unsigned char,class std::allocator<unsigned char> > const &,class std::vector<unsigned char,class std::allocator<unsigned char> > const &,enum Poco::Crypto::A0xca65091 6::CryptoTransformImpl::Direction)" (??0CryptoTransformImpl@?A0xca650916@Crypto@Poco@@QEAA@PEBUevp_cipher_st@@AEBV?$vector@EV?$allocator@E@std@@@std@@1W4Direction@0123@@Z) 中引用了该符号 [D:\MyC odeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] CipherKeyImpl.obj : error LNK2001: 无法解析的外部符号 EVP_CIPHER_get_mode [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] CipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_CIPHER_CTX_get_block_size,函数 "public: virtual unsigned __int64 __cdecl Poco::Crypto::`anonymous namespace'::CryptoTransformImpl::blockSize(vo id)const " (?blockSize@CryptoTransformImpl@?A0xca650916@Crypto@Poco@@UEBA_KXZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] CipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_CipherInit,函数 "public: __cdecl Poco::Crypto::`anonymous namespace'::CryptoTransformImpl::CryptoTransformImpl(struct evp_cipher_st const *,cla ss std::vector<unsigned char,class std::allocator<unsigned char> > const &,class std::vector<unsigned char,class std::allocator<unsigned char> > const &,enum Poco::Crypto::A0xca650916::Cr yptoTransformImpl::Direction)" (??0CryptoTransformImpl@?A0xca650916@Crypto@Poco@@QEAA@PEBUevp_cipher_st@@AEBV?$vector@EV?$allocator@E@std@@@std@@1W4Direction@0123@@Z) 中引用了该符号 [D:\MyCodeBa se\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] CipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_CipherUpdate,函数 "public: virtual __int64 __cdecl Poco::Crypto::`anonymous namespace'::CryptoTransformImpl::transform(unsigned char const *,__ int64,unsigned char *,__int64)" (?transform@CryptoTransformImpl@?A0xca650916@Crypto@Poco@@UEAA_JPEBE_JPEAE1@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs 170.vcxproj] CipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_CipherFinal_ex,函数 "public: virtual __int64 __cdecl Poco::Crypto::`anonymous namespace'::CryptoTransformImpl::finalize(unsigned char *,__int64 )" (?finalize@CryptoTransformImpl@?A0xca650916@Crypto@Poco@@UEAA_JPEAE_J@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] CipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_CIPHER_CTX_new,函数 "public: __cdecl Poco::Crypto::`anonymous namespace'::CryptoTransformImpl::CryptoTransformImpl(struct evp_cipher_st const * ,class std::vector<unsigned char,class std::allocator<unsigned char> > const &,class std::vector<unsigned char,class std::allocator<unsigned char> > const &,enum Poco::Crypto::A0xca650916 ::CryptoTransformImpl::Direction)" (??0CryptoTransformImpl@?A0xca650916@Crypto@Poco@@QEAA@PEBUevp_cipher_st@@AEBV?$vector@EV?$allocator@E@std@@@std@@1W4Direction@0123@@Z) 中引用了该符号 [D:\MyCo deBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] Envelope.obj : error LNK2001: 无法解析的外部符号 EVP_CIPHER_CTX_new [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] CipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_CIPHER_CTX_reset,函数 "public: virtual __cdecl Poco::Crypto::`anonymous namespace'::CryptoTransformImpl::~CryptoTransformImpl(void)" (??1Crypto TransformImpl@?A0xca650916@Crypto@Poco@@UEAA@XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] Envelope.obj : error LNK2001: 无法解析的外部符号 EVP_CIPHER_CTX_reset [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] CipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_CIPHER_CTX_free,函数 "public: virtual __cdecl Poco::Crypto::`anonymous namespace'::CryptoTransformImpl::~CryptoTransformImpl(void)" (??1CryptoT ransformImpl@?A0xca650916@Crypto@Poco@@UEAA@XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] Envelope.obj : error LNK2001: 无法解析的外部符号 EVP_CIPHER_CTX_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] CipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_CIPHER_CTX_set_padding,函数 "public: virtual int __cdecl Poco::Crypto::`anonymous namespace'::CryptoTransformImpl::setPadding(int)" (?setPaddin g@CryptoTransformImpl@?A0xca650916@Crypto@Poco@@UEAAHH@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] CipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_CIPHER_CTX_ctrl,函数 "public: __cdecl Poco::Crypto::`anonymous namespace'::CryptoTransformImpl::CryptoTransformImpl(struct evp_cipher_st const *,class std::vector<unsigned char,class std::allocator<unsigned char> > const &,class std::vector<unsigned char,class std::allocator<unsigned char> > const &,enum Poco::Crypto::A0xca65091 6::CryptoTransformImpl::Direction)" (??0CryptoTransformImpl@?A0xca650916@Crypto@Poco@@QEAA@PEBUevp_cipher_st@@AEBV?$vector@EV?$allocator@E@std@@@std@@1W4Direction@0123@@Z) 中引用了该符号 [D:\MyC odeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] CipherKeyImpl.obj : error LNK2019: 无法解析的外部符号 EVP_CIPHER_get_block_size,函数 "public: int __cdecl Poco::Crypto::CipherKeyImpl::blockSize(void)const " (?blockSize@CipherKeyImpl@Crypto@Poco@@Q EBAHXZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] Envelope.obj : error LNK2001: 无法解析的外部符号 EVP_CIPHER_get_block_size [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] CipherKeyImpl.obj : error LNK2019: 无法解析的外部符号 EVP_CIPHER_get_key_length,函数 "public: int __cdecl Poco::Crypto::CipherKeyImpl::keySize(void)const " (?keySize@CipherKeyImpl@Crypto@Poco@@QEBAH XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] CipherKeyImpl.obj : error LNK2019: 无法解析的外部符号 EVP_BytesToKey,函数 "private: void __cdecl Poco::Crypto::CipherKeyImpl::generateKey(class std::basic_string<char,struct std::char_traits<char>,c lass std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,int)" (?generateKey@CipherKeyImpl@Crypto@Poco@@AEAAXAEB V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0H@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] CipherKeyImpl.obj : error LNK2019: 无法解析的外部符号 EVP_md5,函数 "private: void __cdecl Poco::Crypto::CipherKeyImpl::generateKey(class std::basic_string<char,struct std::char_traits<char>,class st d::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,int)" (?generateKey@CipherKeyImpl@Crypto@Poco@@AEAAXAEBV?$basi c_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0H@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] CipherKeyImpl.obj : error LNK2019: 无法解析的外部符号 EVP_get_cipherbyname,函数 "public: __cdecl Poco::Crypto::CipherKeyImpl::CipherKeyImpl(class std::basic_string<char,struct std::char_traits<char> ,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits< char>,class std::allocator<char> > const &,int,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0CipherKeyImpl@Crypto@Poco@@QEAA@AEBV?$ basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00H0@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] Envelope.obj : error LNK2001: 无法解析的外部符号 EVP_get_cipherbyname [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] CipherKeyImpl.obj : error LNK2019: 无法解析的外部符号 EVP_get_digestbyname,函数 "public: __cdecl Poco::Crypto::CipherKeyImpl::CipherKeyImpl(class std::basic_string<char,struct std::char_traits<char> ,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits< char>,class std::allocator<char> > const &,int,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0CipherKeyImpl@Crypto@Poco@@QEAA@AEBV?$ basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00H0@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] DigestEngine.obj : error LNK2001: 无法解析的外部符号 EVP_get_digestbyname [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2001: 无法解析的外部符号 EVP_get_digestbyname [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] DigestEngine.obj : error LNK2019: 无法解析的外部符号 EVP_MD_get_type,函数 "public: int __cdecl Poco::Crypto::DigestEngine::nid(void)const " (?nid@DigestEngine@Crypto@Poco@@QEBAHXZ) 中引用了该符号 [D:\MyCod eBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] DigestEngine.obj : error LNK2019: 无法解析的外部符号 EVP_MD_get_size,函数 "public: virtual class std::vector<unsigned char,class std::allocator<unsigned char> > const & __cdecl Poco::Crypto::DigestE ngine::digest(void)" (?digest@DigestEngine@Crypto@Poco@@UEAAAEBV?$vector@EV?$allocator@E@std@@@std@@XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcx proj] DigestEngine.obj : error LNK2019: 无法解析的外部符号 EVP_MD_CTX_get0_md,函数 "public: virtual class std::vector<unsigned char,class std::allocator<unsigned char> > const & __cdecl Poco::Crypto::Dige stEngine::digest(void)" (?digest@DigestEngine@Crypto@Poco@@UEAAAEBV?$vector@EV?$allocator@E@std@@@std@@XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170. vcxproj] DigestEngine.obj : error LNK2019: 无法解析的外部符号 EVP_MD_CTX_new,函数 "public: __cdecl Poco::Crypto::DigestEngine::DigestEngine(class std::basic_string<char,struct std::char_traits<char>,class st d::allocator<char> > const &)" (??0DigestEngine@Crypto@Poco@@QEAA@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3- release\Crypto\Crypto_vs170.vcxproj] DigestEngine.obj : error LNK2019: 无法解析的外部符号 EVP_MD_CTX_free,函数 "public: virtual __cdecl Poco::Crypto::DigestEngine::~DigestEngine(void)" (??1DigestEngine@Crypto@Poco@@UEAA@XZ) 中引用了该符号 [D: \MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] DigestEngine.obj : error LNK2019: 无法解析的外部符号 EVP_DigestInit_ex,函数 "public: __cdecl Poco::Crypto::DigestEngine::DigestEngine(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0DigestEngine@Crypto@Poco@@QEAA@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13 .3-release\Crypto\Crypto_vs170.vcxproj] DigestEngine.obj : error LNK2019: 无法解析的外部符号 EVP_DigestUpdate,函数 "protected: virtual void __cdecl Poco::Crypto::DigestEngine::updateImpl(void const *,unsigned __int64)" (?updateImpl@Digest Engine@Crypto@Poco@@MEAAXPEBX_K@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] DigestEngine.obj : error LNK2019: 无法解析的外部符号 EVP_DigestFinal_ex,函数 "public: virtual class std::vector<unsigned char,class std::allocator<unsigned char> > const & __cdecl Poco::Crypto::Dige stEngine::digest(void)" (?digest@DigestEngine@Crypto@Poco@@UEAAAEBV?$vector@EV?$allocator@E@std@@@std@@XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170. vcxproj] ECDSADigestEngine.obj : error LNK2019: 无法解析的外部符号 BN_num_bits,函数 "public: class std::vector<unsigned char,class std::allocator<unsigned char> > __cdecl Poco::Crypto::ECDSASignature::rawR(v oid)const " (?rawR@ECDSASignature@Crypto@Poco@@QEBA?AV?$vector@EV?$allocator@E@std@@@std@@XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 BN_num_bits [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECDSADigestEngine.obj : error LNK2019: 无法解析的外部符号 BN_bin2bn,函数 "public: __cdecl Poco::Crypto::ECDSASignature::ECDSASignature(class std::vector<unsigned char,class std::allocator<unsigned c har> > const &,class std::vector<unsigned char,class std::allocator<unsigned char> > const &)" (??0ECDSASignature@Crypto@Poco@@QEAA@AEBV?$vector@EV?$allocator@E@std@@@std@@0@Z) 中引用了该 符号 [D :\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2001: 无法解析的外部符号 BN_bin2bn [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECDSADigestEngine.obj : error LNK2019: 无法解析的外部符号 BN_bn2bin,函数 "public: class std::vector<unsigned char,class std::allocator<unsigned char> > __cdecl Poco::Crypto::ECDSASignature::rawR(voi d)const " (?rawR@ECDSASignature@Crypto@Poco@@QEBA?AV?$vector@EV?$allocator@E@std@@@std@@XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 BN_bn2bin [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECDSADigestEngine.obj : error LNK2019: 无法解析的外部符号 ECDSA_SIG_new,函数 "public: __cdecl Poco::Crypto::ECDSASignature::ECDSASignature(class std::vector<unsigned char,class std::allocator<unsign ed char> > const &,class std::vector<unsigned char,class std::allocator<unsigned char> > const &)" (??0ECDSASignature@Crypto@Poco@@QEAA@AEBV?$vector@EV?$allocator@E@std@@@std@@0@Z) 中引用 了该符 号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECDSADigestEngine.obj : error LNK2019: 无法解析的外部符号 ECDSA_SIG_free,函数 __catch$??0ECDSASignature@Crypto@Poco@@QEAA@AEBV?$vector@EV?$allocator@E@std@@@std@@0@Z$0 中引用了该符号 [D:\MyCodeBase\gitInte rest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECDSADigestEngine.obj : error LNK2019: 无法解析的外部符号 d2i_ECDSA_SIG,函数 "public: __cdecl Poco::Crypto::ECDSASignature::ECDSASignature(class std::vector<unsigned char,class std::allocator<unsign ed char> > const &)" (??0ECDSASignature@Crypto@Poco@@QEAA@AEBV?$vector@EV?$allocator@E@std@@@std@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxpr oj] ECDSADigestEngine.obj : error LNK2019: 无法解析的外部符号 i2d_ECDSA_SIG,函数 "public: class std::vector<unsigned char,class std::allocator<unsigned char> > __cdecl Poco::Crypto::ECDSASignature::toDE R(void)const " (?toDER@ECDSASignature@Crypto@Poco@@QEBA?AV?$vector@EV?$allocator@E@std@@@std@@XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECDSADigestEngine.obj : error LNK2019: 无法解析的外部符号 ECDSA_SIG_get0,函数 "public: __cdecl Poco::Crypto::ECDSASignature::ECDSASignature(class std::vector<unsigned char,class std::allocator<unsig ned char> > const &,class std::vector<unsigned char,class std::allocator<unsigned char> > const &)" (??0ECDSASignature@Crypto@Poco@@QEAA@AEBV?$vector@EV?$allocator@E@std@@@std@@0@Z) 中引用了该 符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECDSADigestEngine.obj : error LNK2019: 无法解析的外部符号 ECDSA_SIG_get0_r,函数 "public: class std::vector<unsigned char,class std::allocator<unsigned char> > __cdecl Poco::Crypto::ECDSASignature::r awR(void)const " (?rawR@ECDSASignature@Crypto@Poco@@QEBA?AV?$vector@EV?$allocator@E@std@@@std@@XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECDSADigestEngine.obj : error LNK2019: 无法解析的外部符号 ECDSA_SIG_get0_s,函数 "public: class std::vector<unsigned char,class std::allocator<unsigned char> > __cdecl Poco::Crypto::ECDSASignature::r awS(void)const " (?rawS@ECDSASignature@Crypto@Poco@@QEBA?AV?$vector@EV?$allocator@E@std@@@std@@XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECDSADigestEngine.obj : error LNK2019: 无法解析的外部符号 ECDSA_SIG_set0,函数 "public: __cdecl Poco::Crypto::ECDSASignature::ECDSASignature(class std::vector<unsigned char,class std::allocator<unsig ned char> > const &,class std::vector<unsigned char,class std::allocator<unsigned char> > const &)" (??0ECDSASignature@Crypto@Poco@@QEAA@AEBV?$vector@EV?$allocator@E@std@@@std@@0@Z) 中引用了该 符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECDSADigestEngine.obj : error LNK2019: 无法解析的外部符号 ECDSA_sign,函数 "public: class std::vector<unsigned char,class std::allocator<unsigned char> > const & __cdecl Poco::Crypto::ECDSADigestEngi ne::signature(void)" (?signature@ECDSADigestEngine@Crypto@Poco@@QEAAAEBV?$vector@EV?$allocator@E@std@@@std@@XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_v s170.vcxproj] ECDSADigestEngine.obj : error LNK2019: 无法解析的外部符号 ECDSA_verify,函数 "public: bool __cdecl Poco::Crypto::ECDSADigestEngine::verify(class std::vector<unsigned char,class std::allocator<unsigne d char> > const &)" (?verify@ECDSADigestEngine@Crypto@Poco@@QEAA_NAEBV?$vector@EV?$allocator@E@std@@@std@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs1 70.vcxproj] EVPPKey.obj : error LNK2001: 无法解析的外部符号 OBJ_nid2sn [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECDSADigestEngine.obj : error LNK2001: 无法解析的外部符号 OBJ_nid2sn [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKey.obj : error LNK2001: 无法解析的外部符号 OBJ_nid2sn [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKeyImpl.obj : error LNK2001: 无法解析的外部符号 OBJ_nid2sn [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] Envelope.obj : error LNK2001: 无法解析的外部符号 OBJ_nid2sn [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECDSADigestEngine.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_new,函数 "public: virtual void __cdecl Poco::Crypto::ECKeyImpl::save(class std::basic_string<char,struct std::char_traits<char>,cla ss std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char >,class std::allocator<char> > const &)const " (?save@ECKeyImpl@Crypto@Poco@@UEBAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest \poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKey.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_new [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKeyImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_new [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_new [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKey.obj : error LNK2019: 无法解析的外部符号 OBJ_txt2nid,函数 "public: __cdecl Poco::Crypto::ECKey::ECKey(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > con st &)" (??0ECKey@Crypto@Poco@@QEAA@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcx proj] EVPPKey.obj : error LNK2001: 无法解析的外部符号 OBJ_txt2nid [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 CRYPTO_malloc,函数 "public: static int __cdecl Poco::Crypto::ECKeyImpl::getCurveNID(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &)" (?getCurveNID@ECKeyImpl@Crypto@Poco@@SAHAEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13. 3-release\Crypto\Crypto_vs170.vcxproj] ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 CRYPTO_free,函数 "public: static int __cdecl Poco::Crypto::ECKeyImpl::getCurveNID(class std::basic_string<char,struct std::char_traits<char>,class s td::allocator<char> > &)" (?getCurveNID@ECKeyImpl@Crypto@Poco@@SAHAEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3- release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2001: 无法解析的外部符号 CRYPTO_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2019: 无法解析的外部符号 BIO_free,函数 "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl Poco::Crypto::_X509_NAME_onelin e_utf8(struct X509_name_st *)" (?_X509_NAME_oneline_utf8@Crypto@Poco@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEAUX509_name_st@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInt erest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKeyImpl.obj : error LNK2001: 无法解析的外部符号 BIO_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2001: 无法解析的外部符号 BIO_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] PKCS12Container.obj : error LNK2001: 无法解析的外部符号 BIO_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 BIO_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2019: 无法解析的外部符号 BIO_new_mem_buf,函数 "protected: void __cdecl Poco::Crypto::X509Certificate::load(class std::basic_istream<char,struct std::char_traits<char> > &)" (?load@X509Certificate@Crypto@Poco@@IEAAXAEAV?$basic_istream@DU?$char_traits@D@std@@@std@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj ] ECKeyImpl.obj : error LNK2001: 无法解析的外部符号 BIO_new_mem_buf [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2001: 无法解析的外部符号 BIO_new_mem_buf [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] PKCS12Container.obj : error LNK2001: 无法解析的外部符号 BIO_new_mem_buf [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 BIO_new_mem_buf [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 EC_GROUP_get_curve_name,函数 "public: int __cdecl Poco::Crypto::ECKeyImpl::groupId(void)const " (?groupId@ECKeyImpl@Crypto@Poco@@QEBAHXZ) 中引用了该符号 [D :\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 EC_get_builtin_curves,函数 "public: static int __cdecl Poco::Crypto::ECKeyImpl::getCurveNID(class std::basic_string<char,struct std::char_traits<cha r>,class std::allocator<char> > &)" (?getCurveNID@ECKeyImpl@Crypto@Poco@@SAHAEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-po co-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 EC_KEY_new_by_curve_name,函数 "public: __cdecl Poco::Crypto::ECKeyImpl::ECKeyImpl(int)" (??0ECKeyImpl@Crypto@Poco@@QEAA@H@Z) 中引用了该符号 [D:\MyCodeBase\ gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2001: 无法解析的外部符号 EC_KEY_new_by_curve_name [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 EC_KEY_free,函数 "private: void __cdecl Poco::Crypto::ECKeyImpl::freeEC(void)" (?freeEC@ECKeyImpl@Crypto@Poco@@AEAAXXZ) 中引用了该符号 [D:\MyCodeBase\gitIn terest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2001: 无法解析的外部符号 EC_KEY_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 EC_KEY_get0_group,函数 "public: int __cdecl Poco::Crypto::ECKeyImpl::groupId(void)const " (?groupId@ECKeyImpl@Crypto@Poco@@QEBAHXZ) 中引 用了该符号 [D:\MyCo deBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 EC_KEY_set_asn1_flag,函数 "public: __cdecl Poco::Crypto::ECKeyImpl::ECKeyImpl(int)" (??0ECKeyImpl@Crypto@Poco@@QEAA@H@Z) 中引用了该符号 [D:\MyCodeBase\gitI nterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 EC_KEY_generate_key,函数 "public: __cdecl Poco::Crypto::ECKeyImpl::ECKeyImpl(int)" (??0ECKeyImpl@Crypto@Poco@@QEAA@H@Z) 中引用了该符号 [D:\MyCodeBase\gitIn terest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2001: 无法解析的外部符号 EC_KEY_generate_key [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 EC_KEY_check_key,函数 "private: void __cdecl Poco::Crypto::ECKeyImpl::checkEC(class std::basic_string<char,struct std::char_traits<char>,class std:: allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)const " (?checkEC@ECKeyImpl@Crypto@Poco@@AEBAXAEBV?$basic_string@ DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 OBJ_nid2obj,函数 "public: static int __cdecl Poco::Crypto::ECKeyImpl::getCurveNID(class std::basic_string<char,struct std::char_traits<char>,class s td::allocator<char> > &)" (?getCurveNID@ECKeyImpl@Crypto@Poco@@SAHAEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3- release\Crypto\Crypto_vs170.vcxproj] ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 OBJ_obj2txt,函数 "public: static int __cdecl Poco::Crypto::ECKeyImpl::getCurveNID(class std::basic_string<char,struct std::char_traits<char>,class s td::allocator<char> > &)" (?getCurveNID@ECKeyImpl@Crypto@Poco@@SAHAEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3- release\Crypto\Crypto_vs170.vcxproj] ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_get_bits,函数 "public: virtual int __cdecl Poco::Crypto::ECKeyImpl::size(void)const " (?size@ECKeyImpl@Crypto@Poco@@UEBAHXZ) 中 引用了该符号 [D:\My CodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_set1_EC_KEY,函数 "public: virtual int __cdecl Poco::Crypto::ECKeyImpl::size(void)const " (?size@ECKeyImpl@Crypto@Poco@@UEBAHXZ) 中引用了该符号 [D: \MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_set1_EC_KEY [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_get1_EC_KEY,函数 "public: __cdecl Poco::Crypto::ECKeyImpl::ECKeyImpl(class std::basic_string<char,struct std::char_traits<char>,class std:: allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0ECKeyImpl@Crypto@Poco@@QEAA@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3 -release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_get1_EC_KEY [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKeyImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] Envelope.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] PKCS12Container.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2019: 无法解析的外部符号 X509_dup,函数 "public: __cdecl Poco::Crypto::X509Certificate::X509Certificate(class Poco::Crypto::X509Certificate const &)" (??0X509Certificat e@Crypto@Poco@@QEAA@AEBV012@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKeyImpl.obj : error LNK2001: 无法解析的外部符号 X509_dup [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2001: 无法解析的外部符号 X509_dup [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] PKCS12Container.obj : error LNK2001: 无法解析的外部符号 X509_dup [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 X509_dup [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2019: 无法解析的外部符号 X509_get_version,函数 "public: __cdecl Poco::Crypto::X509Certificate::~X509Certificate(void)" (??1X509Certificate@Crypto@Poco@@QEAA@XZ) 中引用了该符 号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKeyImpl.obj : error LNK2001: 无法解析的外部符号 X509_get_version [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2001: 无法解析的外部符号 X509_get_version [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] PKCS12Container.obj : error LNK2001: 无法解析的外部符号 X509_get_version [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 X509_get_version [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 X509_get_pubkey,函数 "public: __cdecl Poco::Crypto::ECKeyImpl::ECKeyImpl(class Poco::Crypto::X509Certificate const &)" (??0ECKeyImpl@Crypto@Poco@@QE AA@AEBVX509Certificate@12@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2001: 无法解析的外部符号 X509_get_pubkey [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 X509_get_pubkey [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2001: 无法解析的外部符号 X509_get_pubkey [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 PEM_read_bio_PrivateKey,函数 "public: __cdecl Poco::Crypto::ECKeyImpl::ECKeyImpl(class std::basic_istream<char,struct std::char_traits<char> > *,cla ss std::basic_istream<char,struct std::char_traits<char> > *,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0ECKeyImpl@Crypto@Poco@@Q EAA@PEAV?$basic_istream@DU?$char_traits@D@std@@@std@@0AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@4@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\ Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2001: 无法解析的外部符号 PEM_read_bio_PrivateKey [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 PEM_read_PrivateKey,函数 "public: __cdecl Poco::Crypto::ECKeyImpl::ECKeyImpl(class std::basic_string<char,struct std::char_traits<char>,class std::a llocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class s td::allocator<char> > const &)" (??0ECKeyImpl@Crypto@Poco@@QEAA@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3- release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2001: 无法解析的外部符号 PEM_read_PrivateKey [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 PEM_read_bio_PUBKEY,函数 "public: __cdecl Poco::Crypto::ECKeyImpl::ECKeyImpl(class std::basic_istream<char,struct std::char_traits<char> > *,class s td::basic_istream<char,struct std::char_traits<char> > *,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0ECKeyImpl@Crypto@Poco@@QEAA@ PEAV?$basic_istream@DU?$char_traits@D@std@@@std@@0AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@4@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Cryp to_vs170.vcxproj] EVPPKey.obj : error LNK2001: 无法解析的外部符号 PEM_read_bio_PUBKEY [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ECKeyImpl.obj : error LNK2019: 无法解析的外部符号 PEM_read_PUBKEY,函数 "public: __cdecl Poco::Crypto::ECKeyImpl::ECKeyImpl(class std::basic_string<char,struct std::char_traits<char>,class std::alloc ator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std:: allocator<char> > const &)" (??0ECKeyImpl@Crypto@Poco@@QEAA@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-rele ase\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2001: 无法解析的外部符号 PEM_read_PUBKEY [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] Envelope.obj : error LNK2019: 无法解析的外部符号 EVP_CIPHER_get_nid,函数 "public: int __cdecl Poco::Crypto::Envelope::cipherNID(void)const " (?cipherNID@Envelope@Crypto@Poco@@QEBAHXZ) 中 引用了该符号 [D:\My CodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] Envelope.obj : error LNK2019: 无法解析的外部符号 EVP_EncryptUpdate,函数 "public: class std::vector<unsigned char,class std::allocator<unsigned char> > const & __cdecl Poco::Crypto::Envelope::seal(cl ass std::vector<unsigned char,class std::allocator<unsigned char> > const &)" (?seal@Envelope@Crypto@Poco@@QEAAAEBV?$vector@EV?$allocator@E@std@@@std@@AEBV45@@Z) 中引用了该符号 [D:\MyCodeBase\gi tInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] Envelope.obj : error LNK2019: 无法解析的外部符号 EVP_DecryptUpdate,函数 "public: class std::vector<unsigned char,class std::allocator<unsigned char> > __cdecl Poco::Crypto::Envelope::open(class Poco ::Crypto::EVPPKey const &,class std::vector<unsigned char,class std::allocator<unsigned char> > const &,class std::vector<unsigned char,class std::allocator<unsigned char> > const &)" (?o pen@Envelope@Crypto@Poco@@QEAA?AV?$vector@EV?$allocator@E@std@@@std@@AEBVEVPPKey@23@AEBV45@1@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] Envelope.obj : error LNK2019: 无法解析的外部符号 EVP_OpenInit,函数 "public: class std::vector<unsigned char,class std::allocator<unsigned char> > __cdecl Poco::Crypto::Envelope::open(class Poco::Cry pto::EVPPKey const &,class std::vector<unsigned char,class std::allocator<unsigned char> > const &,class std::vector<unsigned char,class std::allocator<unsigned char> > const &)" (?open@E nvelope@Crypto@Poco@@QEAA?AV?$vector@EV?$allocator@E@std@@@std@@AEBVEVPPKey@23@AEBV45@1@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] Envelope.obj : error LNK2019: 无法解析的外部符号 EVP_OpenFinal,函数 "public: class std::vector<unsigned char,class std::allocator<unsigned char> > __cdecl Poco::Crypto::Envelope::open(class Poco::Cr ypto::EVPPKey const &,class std::vector<unsigned char,class std::allocator<unsigned char> > const &,class std::vector<unsigned char,class std::allocator<unsigned char> > const &)" (?open@ Envelope@Crypto@Poco@@QEAA?AV?$vector@EV?$allocator@E@std@@@std@@AEBVEVPPKey@23@AEBV45@1@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] Envelope.obj : error LNK2019: 无法解析的外部符号 EVP_SealInit,函数 "public: class std::vector<unsigned char,class std::allocator<unsigned char> > const & __cdecl Poco::Crypto::Envelope::seal(class s td::vector<unsigned char,class std::allocator<unsigned char> > const &)" (?seal@Envelope@Crypto@Poco@@QEAAAEBV?$vector@EV?$allocator@E@std@@@std@@AEBV45@@Z) 中引用了该符号 [D:\MyCodeBase\gitInte rest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] Envelope.obj : error LNK2019: 无法解析的外部符号 EVP_SealFinal,函数 "public: class std::vector<unsigned char,class std::allocator<unsigned char> > const & __cdecl Poco::Crypto::Envelope::seal(class std::vector<unsigned char,class std::allocator<unsigned char> > const &)" (?seal@Envelope@Crypto@Poco@@QEAAAEBV?$vector@EV?$allocator@E@std@@@std@@AEBV45@@Z) 中引用了该符号 [D:\MyCodeBase\gitInt erest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] Envelope.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_get_size,函数 "public: void __cdecl Poco::Crypto::Envelope::addKey(class Poco::Crypto::EVPPKey const &)" (?addKey@Envelope@Crypto@Poco@@QEAA XAEBVEVPPKey@23@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPCipherImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_get_size [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPCipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_CTX_new,函数 "public: __cdecl Poco::Crypto::`anonymous namespace'::EVPPKeyContext::EVPPKeyContext(struct evp_pkey_st const *)" (??0EVPP KeyContext@?A0x8009e427@Crypto@Poco@@QEAA@PEBUevp_pkey_st@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPCipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_CTX_free,函数 "public: __cdecl Poco::Crypto::`anonymous namespace'::EVPPKeyContext::~EVPPKeyContext(void)" (??1EVPPKeyContext@?A0x8009e 427@Crypto@Poco@@QEAA@XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_CTX_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPCipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_encrypt_init,函数 "public: __cdecl Poco::Crypto::`anonymous namespace'::EVPEncryptImpl::EVPEncryptImpl(struct evp_pkey_st const *)" (?? 0EVPEncryptImpl@?A0x8009e427@Crypto@Poco@@QEAA@PEBUevp_pkey_st@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPCipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_encrypt,函数 "public: virtual __int64 __cdecl Poco::Crypto::`anonymous namespace'::EVPEncryptImpl::finalize(unsigned char *,__int64)" ( ?finalize@EVPEncryptImpl@?A0x8009e427@Crypto@Poco@@UEAA_JPEAE_J@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPCipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_decrypt_init,函数 "public: __cdecl Poco::Crypto::`anonymous namespace'::EVPDecryptImpl::EVPDecryptImpl(struct evp_pkey_st const *)" (?? 0EVPDecryptImpl@?A0x8009e427@Crypto@Poco@@QEAA@PEBUevp_pkey_st@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPCipherImpl.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_decrypt,函数 "public: virtual __int64 __cdecl Poco::Crypto::`anonymous namespace'::EVPDecryptImpl::finalize(unsigned char *,__int64)" ( ?finalize@EVPDecryptImpl@?A0x8009e427@Crypto@Poco@@UEAA_JPEAE_J@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2019: 无法解析的外部符号 BIO_s_file,函数 "public: void __cdecl Poco::Crypto::EVPPKey::save(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char > > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator <char> > const &)const " (?save@EVPPKey@Crypto@Poco@@QEBAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-releas e\Crypto\Crypto_vs170.vcxproj] RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 BIO_s_file [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2001: 无法解析的外部符号 BIO_s_file [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2019: 无法解析的外部符号 BIO_new,函数 "public: void __cdecl Poco::Crypto::EVPPKey::save(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<ch ar> > const &)const " (?save@EVPPKey@Crypto@Poco@@QEBAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\C rypto\Crypto_vs170.vcxproj] RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 BIO_new [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2001: 无法解析的外部符号 BIO_new [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2019: 无法解析的外部符号 BIO_ctrl,函数 "public: void __cdecl Poco::Crypto::EVPPKey::save(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<c har> > const &)const " (?save@EVPPKey@Crypto@Poco@@QEBAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\ Crypto\Crypto_vs170.vcxproj] RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 BIO_ctrl [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2001: 无法解析的外部符号 BIO_ctrl [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2019: 无法解析的外部符号 BIO_s_mem,函数 "public: void __cdecl Poco::Crypto::EVPPKey::save(class std::basic_ostream<char,struct std::char_traits<char> > *,class std::basic_ostr eam<char,struct std::char_traits<char> > *,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)const " (?save@EVPPKey@Crypto@Poco@@QEBAXPEAV?$b asic_ostream@DU?$char_traits@D@std@@@std@@0AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@5@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs17 0.vcxproj] RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 BIO_s_mem [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2001: 无法解析的外部符号 BIO_s_mem [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_CTX_set_ec_paramgen_curve_nid,函数 "public: __cdecl Poco::Crypto::EVPPKey::EVPPKey(int,int)" (??0EVPPKey@Crypto@Poco@@QEAA@HH@Z) 中引用了该符号 [D:\ MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2019: 无法解析的外部符号 BN_clear_free,函数 "struct ossl_param_st * __cdecl Poco::Crypto::getKeyParameters(class std::vector<unsigned char,class std::allocator<unsigned char> > const *,class std::vector<unsigned char,class std::allocator<unsigned char> > const *)" (?getKeyParameters@Crypto@Poco@@YAPEAUossl_param_st@@PEBV?$vector@EV?$allocator@E@std@@@std@@0@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2019: 无法解析的外部符号 OSSL_PARAM_free,函数 "public: __cdecl Poco::Crypto::EVPPKey::EVPPKey(class std::vector<unsigned char,class std::allocator<unsigned char> > const *,cla ss std::vector<unsigned char,class std::allocator<unsigned char> > const *,unsigned long,int)" (??0EVPPKey@Crypto@Poco@@QEAA@PEBV?$vector@EV?$allocator@E@std@@@std@@0KH@Z) 中引用了该符号 [D:\MyC odeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_CTX_set_rsa_keygen_bits,函数 "public: __cdecl Poco::Crypto::EVPPKey::EVPPKey(int,int)" (??0EVPPKey@Crypto@Poco@@QEAA@HH@Z) 中引用 了该符号 [D:\MyCode Base\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2019: 无法解析的外部符号 RSA_free,函数 "public: static struct evp_pkey_st * __cdecl Poco::Crypto::EVPPKey::duplicate(struct evp_pkey_st const *,struct evp_pkey_st * *)" (?dupl icate@EVPPKey@Crypto@Poco@@SAPEAUevp_pkey_st@@PEBU4@PEAPEAU4@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 RSA_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2019: 无法解析的外部符号 EVP_des_ede3_cbc,函数 "public: void __cdecl Poco::Crypto::EVPPKey::save(class std::basic_string<char,struct std::char_traits<char>,class std::allocato r<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::all ocator<char> > const &)const " (?save@EVPPKey@Crypto@Poco@@QEBAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3- release\Crypto\Crypto_vs170.vcxproj] RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 EVP_des_ede3_cbc [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_set1_RSA,函数 "public: static struct evp_pkey_st * __cdecl Poco::Crypto::EVPPKey::duplicate(struct evp_pkey_st const *,struct evp_pkey_st * * )" (?duplicate@EVPPKey@Crypto@Poco@@SAPEAUevp_pkey_st@@PEBU4@PEAPEAU4@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_get1_RSA,函数 "public: static struct evp_pkey_st * __cdecl Poco::Crypto::EVPPKey::duplicate(struct evp_pkey_st const *,struct evp_pkey_st * * )" (?duplicate@EVPPKey@Crypto@Poco@@SAPEAUevp_pkey_st@@PEBU4@PEAPEAU4@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 EVP_PKEY_get1_RSA [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_copy_parameters,函数 "public: static struct evp_pkey_st * __cdecl Poco::Crypto::EVPPKey::duplicate(struct evp_pkey_st const *,struct evp_pkey _st * *)" (?duplicate@EVPPKey@Crypto@Poco@@SAPEAUevp_pkey_st@@PEBU4@PEAPEAU4@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_cmp_parameters,函数 "public: static struct evp_pkey_st * __cdecl Poco::Crypto::EVPPKey::duplicate(struct evp_pkey_st const *,struct evp_pkey_ st * *)" (?duplicate@EVPPKey@Crypto@Poco@@SAPEAUevp_pkey_st@@PEBU4@PEAPEAU4@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_CTX_new_id,函数 "public: __cdecl Poco::Crypto::EVPPKey::EVPPKey(int,int)" (??0EVPPKey@Crypto@Poco@@QEAA@HH@Z) 中引用了该符号 [D:\MyCodeBase\gitInter est\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_fromdata_init,函数 "private: void __cdecl Poco::Crypto::EVPPKey::setKeyFromParameters(struct ossl_param_st *)" (?setKeyFromParameters@EVPPKey @Crypto@Poco@@AEAAXPEAUossl_param_st@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_fromdata,函数 "private: void __cdecl Poco::Crypto::EVPPKey::setKeyFromParameters(struct ossl_param_st *)" (?setKeyFromParameters@EVPPKey@Cryp to@Poco@@AEAAXPEAUossl_param_st@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_keygen_init,函数 "public: __cdecl Poco::Crypto::EVPPKey::EVPPKey(int,int)" (??0EVPPKey@Crypto@Poco@@QEAA@HH@Z) 中引用了该符号 [D:\MyCodeBase\gitInte rest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2019: 无法解析的外部符号 EVP_PKEY_generate,函数 "public: __cdecl Poco::Crypto::EVPPKey::EVPPKey(int,int)" (??0EVPPKey@Crypto@Poco@@QEAA@HH@Z) 中引用了该符号 [D:\MyCodeBase\gitInteres t\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2019: 无法解析的外部符号 PEM_write_bio_PrivateKey,函数 "public: void __cdecl Poco::Crypto::EVPPKey::save(class std::basic_string<char,struct std::char_traits<char>,class std:: allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)const " (?save@EVPPKey@Crypto@Poco@@QEBAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco -1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2019: 无法解析的外部符号 PEM_write_bio_PUBKEY,函数 "public: void __cdecl Poco::Crypto::EVPPKey::save(class std::basic_string<char,struct std::char_traits<char>,class std::allo cator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std: :allocator<char> > const &)const " (?save@EVPPKey@Crypto@Poco@@QEBAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.1 3.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2019: 无法解析的外部符号 OSSL_PARAM_BLD_new,函数 "struct ossl_param_st * __cdecl Poco::Crypto::getKeyParameters(class std::vector<unsigned char,class std::allocator<unsigned c har> > const *,class std::vector<unsigned char,class std::allocator<unsigned char> > const *)" (?getKeyParameters@Crypto@Poco@@YAPEAUossl_param_st@@PEBV?$vector@EV?$allocator@E@std@@@std@ @0@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2019: 无法解析的外部符号 OSSL_PARAM_BLD_to_param,函数 "struct ossl_param_st * __cdecl Poco::Crypto::getKeyParameters(class std::vector<unsigned char,class std::allocator<unsig ned char> > const *,class std::vector<unsigned char,class std::allocator<unsigned char> > const *)" (?getKeyParameters@Crypto@Poco@@YAPEAUossl_param_st@@PEBV?$vector@EV?$allocator@E@std@@ @std@@0@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2019: 无法解析的外部符号 OSSL_PARAM_BLD_free,函数 "struct ossl_param_st * __cdecl Poco::Crypto::getKeyParameters(class std::vector<unsigned char,class std::allocator<unsigned char> > const *,class std::vector<unsigned char,class std::allocator<unsigned char> > const *)" (?getKeyParameters@Crypto@Poco@@YAPEAUossl_param_st@@PEBV?$vector@EV?$allocator@E@std@@@std @@0@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2019: 无法解析的外部符号 OSSL_PARAM_BLD_push_ulong,函数 "struct ossl_param_st * __cdecl Poco::Crypto::getKeyParameters(class std::vector<unsigned char,class std::allocator<uns igned char> > const *,class std::vector<unsigned char,class std::allocator<unsigned char> > const *)" (?getKeyParameters@Crypto@Poco@@YAPEAUossl_param_st@@PEBV?$vector@EV?$allocator@E@std @@@std@@0@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] EVPPKey.obj : error LNK2019: 无法解析的外部符号 OSSL_PARAM_BLD_push_BN,函数 "void __cdecl Poco::Crypto::pushBuildParamBignum(struct ossl_param_bld_st *,char const *,class std::vector<unsigned char,c lass std::allocator<unsigned char> > const &,struct bignum_st * *)" (?pushBuildParamBignum@Crypto@Poco@@YAXPEAUossl_param_bld_st@@PEBDAEBV?$vector@EV?$allocator@E@std@@@std@@PEAPEAUbignum _st@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] OpenSSLInitializer.obj : error LNK2019: 无法解析的外部符号 CONF_modules_load,函数 "public: static void __cdecl Poco::Crypto::OpenSSLInitializer::initialize(void)" (?initialize@OpenSSLInitializer@Cry pto@Poco@@SAXXZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] PKCS12Container.obj : error LNK2019: 无法解析的外部符号 OPENSSL_sk_num,函数 "private: void __cdecl Poco::Crypto::PKCS12Container::load(struct PKCS12_st *,class std::basic_string<char,struct std::cha r_traits<char>,class std::allocator<char> > const &)" (?load@PKCS12Container@Crypto@Poco@@AEAAXPEAUPKCS12_st@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) 中引用了 该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2001: 无法解析的外部符号 OPENSSL_sk_num [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] PKCS12Container.obj : error LNK2019: 无法解析的外部符号 OPENSSL_sk_value,函数 "private: void __cdecl Poco::Crypto::PKCS12Container::load(struct PKCS12_st *,class std::basic_string<char,struct std::c har_traits<char>,class std::allocator<char> > const &)" (?load@PKCS12Container@Crypto@Poco@@AEAAXPEAUPKCS12_st@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) 中引用 了该符 号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2001: 无法解析的外部符号 OPENSSL_sk_value [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] PKCS12Container.obj : error LNK2019: 无法解析的外部符号 OPENSSL_sk_pop_free,函数 "private: void __cdecl Poco::Crypto::PKCS12Container::load(struct PKCS12_st *,class std::basic_string<char,struct std ::char_traits<char>,class std::allocator<char> > const &)" (?load@PKCS12Container@Crypto@Poco@@AEAAXPEAUPKCS12_st@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) 中引用 了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] PKCS12Container.obj : error LNK2019: 无法解析的外部符号 X509_free,函数 "private: void __cdecl Poco::Crypto::PKCS12Container::load(struct PKCS12_st *,class std::basic_string<char,struct std::char_tra its<char>,class std::allocator<char> > const &)" (?load@PKCS12Container@Crypto@Poco@@AEAAXPEAUPKCS12_st@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) 中引用了该符号 [D:\M yCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2001: 无法解析的外部符号 X509_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] PKCS12Container.obj : error LNK2019: 无法解析的外部符号 X509_alias_get0,函数 "private: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl Poco::Crypto::P KCS12Container::extractFriendlyName(struct x509_st *)" (?extractFriendlyName@PKCS12Container@Crypto@Poco@@AEAA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEAUx509_st@@ @Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] PKCS12Container.obj : error LNK2019: 无法解析的外部符号 PKCS12_free,函数 "private: void __cdecl Poco::Crypto::PKCS12Container::load(struct PKCS12_st *,class std::basic_string<char,struct std::char_t raits<char>,class std::allocator<char> > const &)" (?load@PKCS12Container@Crypto@Poco@@AEAAXPEAUPKCS12_st@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) 中引用了该符号 [D: \MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] PKCS12Container.obj : error LNK2019: 无法解析的外部符号 PKCS12_parse,函数 "private: void __cdecl Poco::Crypto::PKCS12Container::load(struct PKCS12_st *,class std::basic_string<char,struct std::char_ traits<char>,class std::allocator<char> > const &)" (?load@PKCS12Container@Crypto@Poco@@AEAAXPEAUPKCS12_st@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) 中引用了该 符号 [D :\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] PKCS12Container.obj : error LNK2019: 无法解析的外部符号 d2i_PKCS12_bio,函数 "public: __cdecl Poco::Crypto::PKCS12Container::PKCS12Container(class std::basic_istream<char,struct std::char_traits<char > > &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0PKCS12Container@Crypto@Poco@@QEAA@AEAV?$basic_istream@DU?$char_traits@D@std@@@s td@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@4@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] PKCS12Container.obj : error LNK2019: 无法解析的外部符号 d2i_PKCS12_fp,函数 "public: __cdecl Poco::Crypto::PKCS12Container::PKCS12Container(class std::basic_string<char,struct std::char_traits<char>, class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (??0PKCS12Container@Crypto@Poco@@QEAA@AEBV?$basic_st ring@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSACipherImpl.obj : error LNK2019: 无法解析的外部符号 RSA_size,函数 "public: virtual unsigned __int64 __cdecl Poco::Crypto::`anonymous namespace'::RSADecryptImpl::blockSize(void)const " (?blockSize@ RSADecryptImpl@?A0xf365f1d8@Crypto@Poco@@UEBA_KXZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSAKeyImpl.obj : error LNK2001: 无法解析的外部符号 RSA_size [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSACipherImpl.obj : error LNK2019: 无法解析的外部符号 RSA_public_encrypt,函数 "public: virtual __int64 __cdecl Poco::Crypto::`anonymous namespace'::RSAEncryptImpl::finalize(unsigned char *,__int64)" (?finalize@RSAEncryptImpl@?A0xf365f1d8@Crypto@Poco@@UEAA_JPEAE_J@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSACipherImpl.obj : error LNK2019: 无法解析的外部符号 RSA_private_decrypt,函数 "public: virtual __int64 __cdecl Poco::Crypto::`anonymous namespace'::RSADecryptImpl::finalize(unsigned char *,__int64) " (?finalize@RSADecryptImpl@?A0xf365f1d8@Crypto@Poco@@UEAA_JPEAE_J@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSADigestEngine.obj : error LNK2019: 无法解析的外部符号 RSA_sign,函数 "public: class std::vector<unsigned char,class std::allocator<unsigned char> > const & __cdecl Poco::Crypto::RSADigestEngine::si gnature(void)" (?signature@RSADigestEngine@Crypto@Poco@@QEAAAEBV?$vector@EV?$allocator@E@std@@@std@@XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcx proj] RSADigestEngine.obj : error LNK2019: 无法解析的外部符号 RSA_verify,函数 "public: bool __cdecl Poco::Crypto::RSADigestEngine::verify(class std::vector<unsigned char,class std::allocator<unsigned char > > const &)" (?verify@RSADigestEngine@Crypto@Poco@@QEAA_NAEBV?$vector@EV?$allocator@E@std@@@std@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxpr oj] RSAKeyImpl.obj : error LNK2019: 无法解析的外部符号 BN_new,函数 "public: __cdecl Poco::Crypto::RSAKeyImpl::RSAKeyImpl(int,unsigned long)" (??0RSAKeyImpl@Crypto@Poco@@QEAA@HK@Z) 中引用了该 符号 [D:\MyCodeBase \gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSAKeyImpl.obj : error LNK2019: 无法解析的外部符号 BN_set_word,函数 "public: __cdecl Poco::Crypto::RSAKeyImpl::RSAKeyImpl(int,unsigned long)" (??0RSAKeyImpl@Crypto@Poco@@QEAA@HK@Z) 中引用了该符号 [D:\MyCod eBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSAKeyImpl.obj : error LNK2019: 无法解析的外部符号 BN_free,函数 "public: __cdecl Poco::Crypto::RSAKeyImpl::RSAKeyImpl(int,unsigned long)" (??0RSAKeyImpl@Crypto@Poco@@QEAA@HK@Z) 中引用了该符号 [D:\MyCodeBas e\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2001: 无法解析的外部符号 BN_free [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSAKeyImpl.obj : error LNK2019: 无法解析的外部符号 RSA_new,函数 "public: __cdecl Poco::Crypto::RSAKeyImpl::RSAKeyImpl(class std::basic_string<char,struct std::char_traits<char>,class std::allocator< char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::alloc ator<char> > const &)" (??0RSAKeyImpl@Crypto@Poco@@QEAA@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\ Crypto\Crypto_vs170.vcxproj] RSAKeyImpl.obj : error LNK2019: 无法解析的外部符号 RSA_get0_key,函数 "public: class std::vector<unsigned char,class std::allocator<unsigned char> > __cdecl Poco::Crypto::RSAKeyImpl::decryptionExpone nt(void)const " (?decryptionExponent@RSAKeyImpl@Crypto@Poco@@QEBA?AV?$vector@EV?$allocator@E@std@@@std@@XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170 .vcxproj] RSAKeyImpl.obj : error LNK2019: 无法解析的外部符号 RSA_generate_key_ex,函数 "public: __cdecl Poco::Crypto::RSAKeyImpl::RSAKeyImpl(int,unsigned long)" (??0RSAKeyImpl@Crypto@Poco@@QEAA@HK@Z) 中引用了该符号 [ D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSAKeyImpl.obj : error LNK2019: 无法解析的外部符号 PEM_read_bio_RSAPrivateKey,函数 "public: __cdecl Poco::Crypto::RSAKeyImpl::RSAKeyImpl(class std::basic_string<char,struct std::char_traits<char>,cl ass std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<cha r>,class std::allocator<char> > const &)" (??0RSAKeyImpl@Crypto@Poco@@QEAA@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-p oco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSAKeyImpl.obj : error LNK2019: 无法解析的外部符号 PEM_write_bio_RSAPrivateKey,函数 "public: virtual void __cdecl Poco::Crypto::RSAKeyImpl::save(class std::basic_string<char,struct std::char_traits< char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_tr aits<char>,class std::allocator<char> > const &)const " (?save@RSAKeyImpl@Crypto@Poco@@UEBAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) 中引用了该符号 [D:\MyCodeBase\g itInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSAKeyImpl.obj : error LNK2019: 无法解析的外部符号 PEM_read_bio_RSAPublicKey,函数 "public: __cdecl Poco::Crypto::RSAKeyImpl::RSAKeyImpl(class std::basic_string<char,struct std::char_traits<char>,cla ss std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char >,class std::allocator<char> > const &)" (??0RSAKeyImpl@Crypto@Poco@@QEAA@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-po co-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSAKeyImpl.obj : error LNK2019: 无法解析的外部符号 PEM_write_bio_RSAPublicKey,函数 "public: virtual void __cdecl Poco::Crypto::RSAKeyImpl::save(class std::basic_string<char,struct std::char_traits<c har>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_tra its<char>,class std::allocator<char> > const &)const " (?save@RSAKeyImpl@Crypto@Poco@@UEBAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) 中引用了该符号 [D:\MyCodeBase\gi tInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] RSAKeyImpl.obj : error LNK2019: 无法解析的外部符号 PEM_read_bio_RSA_PUBKEY,函数 "public: __cdecl Poco::Crypto::RSAKeyImpl::RSAKeyImpl(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>, class std::allocator<char> > const &)" (??0RSAKeyImpl@Crypto@Poco@@QEAA@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco -1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2019: 无法解析的外部符号 BIO_new_file,函数 "public: static class std::vector<class Poco::Crypto::X509Certificate,class std::allocator<class Poco::Crypto::X509Certifica te> > __cdecl Poco::Crypto::X509Certificate::readPEM(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?readPEM@X509Certificate@Crypto@Poc o@@SA?AV?$vector@VX509Certificate@Crypto@Poco@@V?$allocator@VX509Certificate@Crypto@Poco@@@std@@@std@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@5@@Z) 中引用了该符号 [D:\MyCodeB ase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2019: 无法解析的外部符号 BN_bn2hex,函数 "protected: void __cdecl Poco::Crypto::X509Certificate::init(void)" (?init@X509Certificate@Crypto@Poco@@IEAAXXZ) 中 引用了该符号 [D:\My CodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2019: 无法解析的外部符号 ASN1_STRING_length,函数 "public: void __cdecl Poco::Crypto::X509Certificate::extractNames(class std::basic_string<char,struct std::char_traits <char>,class std::allocator<char> > &,class std::set<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,struct std::less<class std::basic_string<char, struct std::char_traits<char>,class std::allocator<char> > >,class std::allocator<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > > > &)const " (?e xtractNames@X509Certificate@Crypto@Poco@@QEBAXAEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAV?$set@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$l ess@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@5@@Z) 中引用了该符号 [D:\MyCodeBase\gitInteres t\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2019: 无法解析的外部符号 ASN1_STRING_get0_data,函数 "public: void __cdecl Poco::Crypto::X509Certificate::extractNames(class std::basic_string<char,struct std::char_tra its<char>,class std::allocator<char> > &,class std::set<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,struct std::less<class std::basic_string<ch ar,struct std::char_traits<char>,class std::allocator<char> > >,class std::allocator<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > > > &)const " (?extractNames@X509Certificate@Crypto@Poco@@QEBAXAEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAV?$set@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U ?$less@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@5@@Z) 中引用了该符号 [D:\MyCodeBase\gitInte rest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2019: 无法解析的外部符号 ASN1_INTEGER_to_BN,函数 "protected: void __cdecl Poco::Crypto::X509Certificate::init(void)" (?init@X509Certificate@Crypto@Poco@@IEAAXXZ) 中引用了该 符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2019: 无法解析的外部符号 OBJ_nid2ln,函数 "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl Poco::Crypto::X509Cer tificate::signatureAlgorithm(void)const " (?signatureAlgorithm@X509Certificate@Crypto@Poco@@QEBA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ) 中引用了该符号 [D:\MyCodeBase\ gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2019: 无法解析的外部符号 X509_verify,函数 "public: bool __cdecl Poco::Crypto::X509Certificate::issuedBy(class Poco::Crypto::X509Certificate const &)const " (?issuedBy@ X509Certificate@Crypto@Poco@@QEBA_NAEBV123@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2019: 无法解析的外部符号 X509_digest,函数 "public: class std::vector<unsigned char,class std::allocator<unsigned char> > __cdecl Poco::Crypto::X509Certificate::fingerp rint(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)const " (?fingerprint@X509Certificate@Crypto@Poco@@QEBA?AV?$vector@EV?$allocator@E@std @@@std@@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@5@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2019: 无法解析的外部符号 X509_get_signature_nid,函数 "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl Poco::Cry pto::X509Certificate::signatureAlgorithm(void)const " (?signatureAlgorithm@X509Certificate@Crypto@Poco@@QEBA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ) 中引用了该符号 [D: \MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2019: 无法解析的外部符号 X509_get_serialNumber,函数 "protected: void __cdecl Poco::Crypto::X509Certificate::init(void)" (?init@X509Certificate@Crypto@Poco@@IEAAXXZ) 中引 用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2019: 无法解析的外部符号 X509_get_issuer_name,函数 "protected: void __cdecl Poco::Crypto::X509Certificate::init(void)" (?init@X509Certificate@Crypto@Poco@@IEAAXXZ) 中引用 了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2019: 无法解析的外部符号 X509_get_subject_name,函数 "protected: void __cdecl Poco::Crypto::X509Certificate::init(void)" (?init@X509Certificate@Crypto@Poco@@IEAAXXZ) 中引 用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2019: 无法解析的外部符号 X509_get0_notBefore,函数 "public: class Poco::DateTime __cdecl Poco::Crypto::X509Certificate::validFrom(void)const " (?validFrom@X509Certifica te@Crypto@Poco@@QEBA?AVDateTime@3@XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2019: 无法解析的外部符号 X509_get0_notAfter,函数 "public: class Poco::DateTime __cdecl Poco::Crypto::X509Certificate::expiresOn(void)const " (?expiresOn@X509Certificat e@Crypto@Poco@@QEBA?AVDateTime@3@XZ) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2019: 无法解析的外部符号 X509_up_ref,函数 "public: __cdecl Poco::Crypto::X509Certificate::X509Certificate(struct x509_st *,bool)" (??0X509Certificate@Crypto@Poco@@QEAA @PEAUx509_st@@_N@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2019: 无法解析的外部符号 X509_cmp,函数 "public: bool __cdecl Poco::Crypto::X509Certificate::equals(class Poco::Crypto::X509Certificate const &)const " (?equals@X509Cer tificate@Crypto@Poco@@QEBA_NAEBV123@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2019: 无法解析的外部符号 X509_NAME_print_ex,函数 "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl Poco::Crypto::_X509_N AME_oneline_utf8(struct X509_name_st *)" (?_X509_NAME_oneline_utf8@Crypto@Poco@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@PEAUX509_name_st@@@Z) 中引用了该符号 [D:\MyCodeB ase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2019: 无法解析的外部符号 X509_NAME_get_text_by_NID,函数 "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl Poco:: Crypto::X509Certificate::issuerName(enum Poco::Crypto::X509Certificate::NID)const " (?issuerName@X509Certificate@Crypto@Poco@@QEBA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2 @@std@@W4NID@123@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2019: 无法解析的外部符号 X509_get_ext_d2i,函数 "public: void __cdecl Poco::Crypto::X509Certificate::extractNames(class std::basic_string<char,struct std::char_traits<c har>,class std::allocator<char> > &,class std::set<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,struct std::less<class std::basic_string<char,st ruct std::char_traits<char>,class std::allocator<char> > >,class std::allocator<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > > > &)const " (?ext ractNames@X509Certificate@Crypto@Poco@@QEBAXAEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAV?$set@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$les s@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@5@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\ poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] X509Certificate.obj : error LNK2019: 无法解析的外部符号 PEM_read_bio_X509,函数 "protected: void __cdecl Poco::Crypto::X509Certificate::load(class std::basic_istream<char,struct std::char_traits<char > > &)" (?load@X509Certificate@Crypto@Poco@@IEAAXAEAV?$basic_istream@DU?$char_traits@D@std@@@std@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxpr oj] X509Certificate.obj : error LNK2019: 无法解析的外部符号 PEM_write_bio_X509,函数 "public: void __cdecl Poco::Crypto::X509Certificate::save(class std::basic_ostream<char,struct std::char_traits<char> > &)const " (?save@X509Certificate@Crypto@Poco@@QEBAXAEAV?$basic_ostream@DU?$char_traits@D@std@@@std@@@Z) 中引用了该符号 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.v cxproj] X509Certificate.obj : error LNK2019: 无法解析的外部符号 GENERAL_NAMES_free,函数 "public: void __cdecl Poco::Crypto::X509Certificate::extractNames(class std::basic_string<char,struct std::char_traits <char>,class std::allocator<char> > &,class std::set<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,struct std::less<class std::basic_string<char, struct std::char_traits<char>,class std::allocator<char> > >,class std::allocator<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > > > &)const " (?e xtractNames@X509Certificate@Crypto@Poco@@QEBAXAEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAV?$set@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@U?$l ess@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@5@@Z) 中引用了该符号 [D:\MyCodeBase\gitInteres t\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj] ..\bin64\PocoCrypto64.dll : fatal error LNK1120: 160 个无法解析的外部命令 [D:\MyCodeBase\gitInterest\poco-poco-1.13.3-release\Crypto\Crypto_vs170.vcxproj]
Solved, need to add include and libs from OpenSSL folder in VS project setting manually.