程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> ubuntu-openssl編程找不到頭文件

ubuntu-openssl編程找不到頭文件

編輯:編程綜合問答
openssl編程找不到頭文件

系統是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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved