OpenSSL 是一个开放源代码的软件库包,用于安全通讯,主要是用于实现网络通讯的加密。OpenSSL 能提供多种网络服务,其中包括 SSL 和 TLS 协议,提供的功能包括:密钥生成,证书生成和管理,对称加密和非对称加密等。OpenSSL1.0.2u是OpenSSL1.0的最后一个版本,由2019年12月20日结束支持,不在提供安全更新。
官网:https://www.openssl.org/
官网下载地址:
https://www.openssl.org/source/old/1.0.2/openssl-1.0.2u.tar.gz
github仓库:https://github.com/openssl/openssl
其它githtu创建包含漏洞修复
https://github.com/fdl66/openssl-1.0.2u-fix-cve
包含漏洞补丁包(openssl-1.0.2u)如需静态编译加-no-shared -no-pinshared
wget https://source.loshub.com/linux/openssl/openssl-1.0.2u-fix-cve.tar.gz;
tar zxf openssl-1.0.2u-fix-cve.tar.gz;
cd openssl-1.0.2u-fix-cve;
chmod +x util/pod2mantest;
chmod +x util/point.sh;
./config -fPIC --prefix=/usr/local/openssl-1.0.2u;
make -j4&&make install&&cd ..
rm -rf openssl-1.0.2u-fix-cve.tar.gz openssl-1.0.2u-fix-cve
编译安装openssl1.0.2u(官网),如需静态编译加-no-shared -no-pinshared
wget https://www.openssl.org/source/old/1.0.2/openssl-1.0.2u.tar.gz
tar zxf openssl-1.0.2u.tar.gz
cd openssl-1.0.2u
./config -fPIC --prefix=/usr/local/openssl-1.0.2u
make -j4&&make install&&cd ..
rm -rf openssl-1.0.2u.tar.gz openssl-1.0.2u
二进制包下载包含补丁(x86-64 GLIBC需要大于等于2.2.5)
wget http://source.loshub.com/linux/Binary/openssl/openssl-1.0.2u.tar.gz
tar zxf openssl-1.0.2u.tar.gz
mv -f openssl-1.0.2u /usr/local
完成

分类: openssl 标签: linux下编译openssl1.0.2u

评论

暂无评论数据

暂无评论数据

目录