ChinaUnix.net
相关文章推荐:

linux openssl 编译

环境:linux, 64bit, python2.7.3/python3.2.3, openssl1.0.1/openssl9.7.0 编译: 1, openssl : ./config --prefix=/home/liangdong/libs make -t make depend 2, python: ./configure --prefix=/home/liangdong/libs make & make install 分析: 从make打印的gcc command来看, 的确是指定了正确的Library路径, 可以找到libssl.so和libcrypto.so, 但我没看懂: [quote]renaming "_hashlib" since importing it fail...

by linux_c_py_php - Python - 2012-08-01 15:28:16 阅读(5719) 回复(8)

相关讨论

步骤的话就是三步,./config make make install ./config没出错,在make时,过了一会儿出现错误如下: /usr/lib/gcc/i386-redhat-linux/4.1.2/../../../crt1.o: In function `_start': (.text+0x18): undefined reference to `main' collect2: ld returned 1 exit status make[2]: *** [link_app.] Error 1 make[2]: Leaving directory `/root/openssl/openssl-1.0.0d/test' make[1]: *** [md2test] Error 2 make[1]: Leavin...

by bw_0927 - C/C++ - 2012-02-02 14:38:13 阅读(3478) 回复(1)

下载openssl http://www.openssl.org/ ./config no-asm --prefix=“要安装的目录” 去掉asm,可能是用的i386汇编写的,编译时汇编部分编译不过 make && make install 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/28407/showart_241488.html

by steprun - Linux文档专区 - 2007-02-01 15:11:47 阅读(976) 回复(0)

用C语言编的,头文件包括 #include <openssl/ssl.h>; #include <openssl/evp.h>; 用gcc编译, 应该如何指出路径, 能否给一个正确的编译和链接命令

by huike007 - Linux论坛 - 2004-05-27 19:25:01 阅读(691) 回复(0)

用C语言编的,头文件包括 #include <openssl/ssl.h>; #include <openssl/evp.h>; 用gcc编译, 应该如何指出路径, 能否给一个正确的编译和链接命令

by huike007 - Linux系统管理 - 2004-05-27 19:25:01 阅读(672) 回复(0)

小弟正在使用openssl,并编写了下面代码.使用 gcc -Wall -o ssl_client ssl_client 编译报下面的错误,应该是没有找到库文件... 但是openssl的库文件在哪啊? 请问那位大哥知道啊? /tmp/ccEWKYFS.o: In function `ShowCerts': ssl_client.c:(.text+0xd): undefined reference to `SSL_get_peer_certificate' ssl_client.c:(.text+0x31): undefined reference to `X509_get_subject_name' ssl_client.c:(.text+0x49): undefined r...

by _mystic - C/C++ - 2009-03-12 13:34:57 阅读(8259) 回复(5)

winxp VC6 masm9 ActivePerl-5.8.8.822-MSWin32-x86-280952.zip openssl098 编译方式 1 perl Configure VC-WIN32 2、ms\do_masm 3 nmake -f ms\ntdll.mak 这里报错 另外还有个问题,我听说生成rsa私钥,要使用openssl中的一个什么配置文件,是什么意思,叫什么名字 我是在C++中用

by ltaotao007 - 数据安全 - 2008-06-28 12:38:50 阅读(1731) 回复(1)

winxp VC6 masm9 ActivePerl-5.8.8.822-MSWin32-x86-280952.zip openssl098 编译方式 1 perl Configure VC-WIN32 2、ms\do_masm 3 nmake -f ms\ntdll.mak 这里报错

by ltaotao007 - Perl - 2008-08-21 14:25:32 阅读(3260) 回复(6)

由于论文的需要,在openssl的官方网站上下载了openssl-0.9.7a版本的源码包,下面说一下它的安装步骤: 解压源代码 tar xzvf openssl-0.9.7a到一个你指定的目录下 然后进入目录配置一下我们的编译环境 运行Configure脚本:./Configure linux-elf-arm --prefix= 指定的目录,然后再依次make,make install就可以完成编译过程,安装成功后就会产生bin,apps,lib各种库文件 本文来自ChinaUnix博客,如果查看原文请点:http:...

by phillipls - Linux文档专区 - 2008-02-25 10:32:55 阅读(1122) 回复(0)

FREEBSD6.1 apache 2.055 openssl 0.98d cd openssl-0.9.8d #./config --prefix=/usr/local/openssl --openssldir=/usr/local/openssl shared zlib #make; #make test; #make install 没有问题 apache编译事出现一下提示: #./configure --prefix=/usr/local/apache --enable-so --enable-ssl --with-ssl=/usr/local/openssl ............... ............... Making all in pcre /soft/http/srclib/apr/libtool --silent --...

by kufang_he1209 - BSD - 2007-04-20 11:21:55 阅读(2121) 回复(0)