【搞openssl,看这篇就够了!】openssl1.1.1g编译(windows linux)
openssl
传输层安全性/安全套接层及其加密库
项目地址:https://gitcode.com/gh_mirrors/ope/openssl
免费下载资源
·
openssl1.1.1g编译
项目某个组件需要集成openssl以支持https,选用openssl1.1.1g版本,编译静态库集成。windows编译需要确保系统具备ActivePrel与nasm工具环境。
win32版本编译
使用vs2008自带的 32位命令行工具编译,在openssl-1.1.1g源码目录下输入指令:
perl Configure VC-WIN32 no-shared no-asm no-tests
nmake
编译完成后,此目录下会生成libssl.lib、libcrypto.lib两个目标库。
win64版本编译
使用vs2008自带的 64位命令行工具编译,在openssl-1.1.1g源码目录下输入指令:
perl Configure VC-WIN64A no-shared no-asm no-tests
nmake
编译完成后,此目录下会生成libssl.lib、libcrypto.lib两个目标库。
linux64版本编译
使用ubuntu64系统的命令行工具编译,在openssl-1.1.1g源码目录下输入指令:
./config -fPIC no-shared no-asm no-tests
make
编译完成后,此目录下会生成libssl.a、libcrypto.a两个目标库。
附录:静态库下载链接
GitHub 加速计划 / ope / openssl
25.13 K
9.99 K
下载
传输层安全性/安全套接层及其加密库
最近提交(Master分支:1 个月前 )
fd39d1c8
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/25095)
3 个月前
ae87c488
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/25095)
3 个月前
更多推荐
已为社区贡献7条内容
所有评论(0)