summaryrefslogtreecommitdiff
path: root/examples/rsa-verify-test
blob: 765b61f5d71c23d0e40858960e6dcf98d165a167 (plain)
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 ] ; then
  ./rsa-sign testkey < "$data" > testsignature \
    && ./rsa-verify testkey.pub testsignature < "$data" \
    || exit 1;
  
  # Try modifying the data
  sed s/128/129/ < "$data" >testdata

  if ./rsa-verify testkey.pub testsignature < testdata 2>/dev/null; then
    exit 1
  fi
  
  # Try modifying the signature
  sed s/1/2/ <testsignature > testsignature2
  if ./rsa-verify testkey.pub testsignature2 < "$data" 2>/dev/null; then
    exit 1;
  fi
  exit 0
else
  exit 77
fi