1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
#! /bin/sh
if [ -z "$srcdir" ] ; then
srcdir=`pwd`
fi
data="$srcdir/nettle-benchmark.c"
if [ -x rsa-verify$EXEEXT ] ; then
$EMULATOR ./rsa-sign$EXEEXT testkey < "$data" > testsignature \
&& $EMULATOR ./rsa-verify$EXEEXT testkey.pub testsignature < "$data" \
|| exit 1;
# Try modifying the data
sed s/128/129/ < "$data" >testdata
if $EMULATOR ./rsa-verify$EXEEXT testkey.pub testsignature < testdata 2>/dev/null; then
exit 1
fi
# Try modifying the signature
sed s/1/2/ <testsignature > testsignature2
if $EMULATOR ./rsa-verify$EXEEXT testkey.pub testsignature2 < "$data" 2>/dev/null; then
exit 1;
fi
exit 0
else
exit 77
fi
|