系统是ubuntu的。在openssl官网上下载了openssl的压缩包,解压后make, make
test, make install都成功了。然后写了一个简单的程序:
#include <stdio.h>
#include <string.h>
#include <openssl/pem.h>
int main()
{
RSA *key;
key = RSA_generate_key(1024, 65537, NULL, NULL);
if (NULL == key){
printf("generate_key error\n");
}
}
可是编译时一直报错说找不到头文件:
可是这个头文件是在的:
求大神带我飞orz