将OpenSSL静态库添加到vc ++项目

时间:2014-01-30 03:28:54

标签: c++ visual-c++ openssl static-libraries

将OpenSSL库添加到visual vc ++项目时遇到了一些问题。

我尝试了所有可以找到的内容,但我仍然无法在代码中包含任何.h个文件。

我有一个目录,我将.liblibeay32.libssleay32.lib)库放在我名为“Lib”的项目的子目录中。我还有一个环境变量指向我的名为“OPENSSL”的OpenSSL安装文件夹。这是我项目配置的一些截图:

enter image description here

enter image description here

enter image description here

enter image description here

尽管如此,如果我写#include "rsa.h例如,Visual Studio告诉我它不存在。我错过了什么?

1 个答案:

答案 0 :(得分:3)

你试过这样包括:

#include <openssl/rsa.h>

#include <rsa.h>

除非你在include路径中添加了openssl文件夹,否则第一种包含的正确方式