-rw-r--r-- 1849 lib25519-20240321/speedcomparison/s2n-bignum/s2n25519-measure.sh raw
#!/bin/sh # Prerequisites: # * Intel/AMD or ARM CPU # * Debian # * packages: git wget build-essential # * dedicated account to run this script # * s2n25519speed.c in the account's home directory cd export LD_LIBRARY_PATH="$HOME/lib" export LIBRARY_PATH="$HOME/lib" export CPATH="$HOME/include" export PATH="$HOME/bin:$PATH" [ -f $HOME/bin/cpucycles-info ] || ( wget -m https://cpucycles.cr.yp.to/libcpucycles-latest-version.txt version=$(cat cpucycles.cr.yp.to/libcpucycles-latest-version.txt) wget -m https://cpucycles.cr.yp.to/libcpucycles-$version.tar.gz tar -xzf cpucycles.cr.yp.to/libcpucycles-$version.tar.gz cd libcpucycles-$version ./configure --prefix=$HOME && make -j8 install ) [ -f $HOME/bin/randombytes-info ] || ( wget -m https://randombytes.cr.yp.to/librandombytes-latest-version.txt version=$(cat randombytes.cr.yp.to/librandombytes-latest-version.txt) wget -m https://randombytes.cr.yp.to/librandombytes-$version.tar.gz tar -xzf randombytes.cr.yp.to/librandombytes-$version.tar.gz cd librandombytes-$version ./configure --prefix=$HOME && make -j8 install ) [ -f $HOME/include/s2n-bignum.h ] || ( git clone https://github.com/awslabs/s2n-bignum cd ./s2n-bignum git checkout acbb18e6343f12a7944de72c1ec0991739600f8c if uname -m | grep 86 > /dev/null then cd x86 else cd arm fi make mkdir -p $HOME/lib $HOME/include cp libs2nbignum.a $HOME/lib cp ../include/s2n-bignum.h $HOME/include ) gcc -o s2n25519speed s2n25519speed.c \ -O3 -I include -ls2nbignum -lcpucycles -lrandombytes ./s2n25519speed > s2n25519speed.out gcc -o s2n25519speed-alt s2n25519speed.c \ -Dcurve25519_x25519_byte=curve25519_x25519_byte_alt \ -Dcurve25519_x25519base_byte=curve25519_x25519base_byte_alt \ -O3 -I include -ls2nbignum -lcpucycles -lrandombytes ./s2n25519speed-alt > s2n25519speed-alt.out