Files
MP-SPDZ/Scripts/test_ecdsa.sh
2020-10-28 11:21:54 +11:00

33 lines
490 B
Bash
Executable File

#!/usr/bin/env bash
echo SECURE = -DINSECURE >> CONFIG.mine
touch ECDSA/Fake-ECDSA.cpp
make -j4 ecdsa Fake-ECDSA.x secure.x
run()
{
port=$[RANDOM+1024]
if ! {
for j in $(seq 0 $2); do
./$1-ecdsa-party.x -p $j 1 2>/dev/null & true
done
wait
} | grep "Online checking"; then
exit 1
fi
}
for i in rep mal-rep shamir mal-shamir; do
run $i 2
done
for i in semi mascot; do
run $i 1
done
if ! ./secure.x; then
./Fake-ECDSA.x
run fake-spdz 1
fi