我目前正在使用Netbeans编写/编译C代码。
我正在尝试在网上找到的几个openssl示例代码,但是在包含库时出现以下错误:
Cannot find include file <openssl/conf.h>
Cannot find include file <openssl/evp.h>
Cannot find include file <openssl/err.h>
我想知道如何导入openssl库。
有人会教我或指出我可以学习导入库的方向吗?
谢谢
答案 0 :(得分:1)
您需要下载OpenSSL标头以及静态链接库或dll。或下载OpenSSL库,编译lib / dll进行链接,然后让编译器找到OpenSSL的includes文件夹。
库源位于此处:https://github.com/openssl/openssl 此处的编译说明:https://wiki.openssl.org/index.php/Compilation_and_Installation 如果您向下滚动到Windows / OSX部分。我想这就是您所使用的。