Skip to content
Snippets Groups Projects
Commit 38c7d4dc authored by Niels Möller's avatar Niels Möller
Browse files

New testcase.

Rev: src/nettle/ChangeLog:1.221
Rev: src/nettle/examples/Makefile.am:1.20
Rev: src/nettle/examples/rsa-encrypt-test:1.1
parent 091e8355
No related branches found
No related tags found
No related merge requests found
2004-01-09 Niels Mller <nisse@harpo.hack.org>
* examples/rsa-encrypt-test: New testcase.
* examples/rsa-encrypt.c: Expanded the comment describing the file
format.
......
......@@ -19,7 +19,7 @@ LDADD = io.o -lnettle ../libnettle.a
nettle_benchmark_LDADD = -lnettle ../libnettle.a $(OPENSSL_LIBFLAGS)
TS_PROGS = rsa-sign-test rsa-verify-test
TS_PROGS = rsa-sign-test rsa-verify-test rsa-encrypt-test
EXTRA_DIST = io.h rsa-session.h run-tests setup-env teardown-env $(TS_PROGS)
.PHONY: run-tests
......
#! /bin/sh
if [ -z "$srcdir" ] ; then
srcdir=`pwd`
fi
data="$srcdir/nettle-benchmark.c"
if [ -x rsa-encrypt ] ; then
if ./rsa-encrypt testkey.pub < "$data" > testciphertext ; then
:
else
exit 1
fi
if ./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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment