summaryrefslogtreecommitdiff
path: root/examples/rsa-encrypt-test
blob: ff935fb0abdc331686895602b3a94fad5b5abe7f (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
#! /bin/sh

if [ -z "$srcdir" ] ; then
  srcdir=`pwd`
fi

data="$srcdir/nettle-benchmark.c"

if [ -x rsa-encrypt$EXEEXT ] ; then
  if $EMULATOR ./rsa-encrypt -r rsa-decrypt$EXEEXT testkey.pub < "$data" > testciphertext ; then
    :
  else
    exit 1
  fi
  if $EMULATOR ./rsa-decrypt testkey < testciphertext > testcleartext ; then
    :
  else
    exit 1
  fi
  if cmp "$data" testcleartext ; then
    exit 0
  else
    exit 1
  fi
else
  exit 77
fi