Ubuntu18.04安装ntl库

首先去官网https://www.shoup.net/ntl/下载安装包,下列shell脚本与安装包放到同一目录,赋予此脚本执行权限。另外,我这里默认你的电脑上面已经安装gcc,g++,make。

#apt install -y gcc
#apt install -y g++
#apt install -y make
apt install -y autoconf

apt install -y m4
apt install -y libgmp-dev
apt install -y libgf2x-dev

tar zxvf ntl-11.4.3.tar.gz

mv ntl-11.4.3 ntl
 
echo -e "\033[31m start install ntl \033[0m"
cd ntl/src
./configure NTL_GF2X_LIB=on
make && make check && make install
cd - >> /dev/null
 
rm -r ntl

测试一下:新建一个rand.cpp(顾名思义,是输出随机数)

#include 
#include 
NTL_CLIENT
int main()
{
	ZZ a,b,c;
	SetSeed(to_ZZ(time(NULL)));
	RandomLen(a, 32);
	RandomLen(b, 32);
	c = a + b;
	cout << "a=" << a << ", b=" << b << ", c=" << c << "\n";
	return 0;
}

按照官网的介绍,使用如下命令编译:

g++ -g -O2 -std=c++11 -pthread -march=native rand.cpp -o rand -lntl -lgmp -lm

其中rand.cpp是c++文件,rand是编译后的可执行文件。

下面执行可执行文件

./rand

输出三个数字,a与b是随机数,c是a与b之和。

参考链接:https://blog.csdn.net/tzwh_86/article/details/9372411#commentBox

https://www.shoup.net/ntl/doc/tour.html

你可能感兴趣的:(密码学)