系統是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
問題解決了
http://www.linuxidc.com/Linux/2011-10/45738.htm 用這個方法把原來的openssl刪掉再重裝openssl,裡面wget的那個1.0.0c
改成1.0.0r。
然後編譯時這麼寫:
sudo gcc -o try try.c -L/usr/local/ssl/include -I/usr/local/ssl/lib -lssl -lcrypto