So I am trying to use openssl inside Visual Studio for some encryption project. These are the steps I did until now:
Download Win64 OpenSSL v1.1.1b from here.
Set
Additional Include Directories
to point to the oppenssl/include directory (from instalation)- Set
Additional Dependencies
inside Linker to:libcrypto.lib
- Set
Additional Library Directories
inside Linker to point to the openssl/lib directory (from instalation)
Now when I build I still get lots of undefined references errors.
From what I read I still need to include the libeay32.lib
and ssleay32.lib
, but I didn't find them anywhere in my openssl instalation directory.
I followed this links for help:
How to use OpenSSL with Visual Studio
How to include openssl in Visual Studio Expres 2012 Windows 7 x64
Aparently my only issue now is that I am missing this files. Anyone know where can I find them ?