简介
近日,老萨在研究不可告人的东西,懂得人自然懂。libsodium,在做某些事情的时候需要安装这个东东。现在收藏一下解决安装失败的办法!
如需在Linux服务器上安装salsa20
或者chacha20
亦或是chacha20-ietf
算法,都离不开libsodium。而且就算在config.json内设置成chacha20
也会提示method no supported.
下面是老萨在遇到这种情况时去找的答案,亲测可用!
Centos:
yum -y groupinstall "Development Tools" wget https://github.com/jedisct1/libsodium/releases/download/1.0.11/libsodium-1.0.11.tar.gz tar xf libsodium-1.0.11.tar.gz && cd libsodium-1.0.11 ./configure && make -j2 && make install echo /usr/local/lib > /etc/ld.so.conf.d/usr_local_lib.conf ldconfig
Ubuntu/Debian:
apt-get install build-essential wget https://github.com/jedisct1/libsodium/releases/download/1.0.11/libsodium-1.0.11.tar.gz tar xf libsodium-1.0.11.tar.gz && cd libsodium-1.0.11 ./configure && make -j2 && make install ldconfig
老萨这里只测试过Centos环境,按照这个shell来说Ubuntu和Debian应该也是没错的。
大家就自行测试Ubuntu和Debian吧。
另外,如果曾经安装过旧版本,亦可重复用以上步骤更新到最新版。
仅1.0.4或以上版本支持chacha20-ietf