Files
MP-SPDZ/Scripts/shamir.sh
2019-06-07 15:26:28 +10:00

15 lines
209 B
Bash
Executable File

#!/bin/bash
HERE=$(cd `dirname $0`; pwd)
SPDZROOT=$HERE/..
export PLAYERS=${PLAYERS:-3}
if test "$THRESHOLD"; then
t="-T $THRESHOLD"
fi
. $HERE/run-common.sh
run_player shamir-party.x $* $t || exit 1