cf/largefile.m4: Fix build with autoconf-2.72
[heimdal.git] / lib / hcrypto / test_crypto.in
blob91c4d8f1093ee8018e4c9f22113def3e8482ff93
1 #!/bin/sh
3 # Copyright (c) 2006 - 2007 Kungliga Tekniska Högskolan
4 # (Royal Institute of Technology, Stockholm, Sweden).
5 # All rights reserved.
7 # Redistribution and use in source and binary forms, with or without
8 # modification, are permitted provided that the following conditions
9 # are met:
11 # 1. Redistributions of source code must retain the above copyright
12 # notice, this list of conditions and the following disclaimer.
14 # 2. Redistributions in binary form must reproduce the above copyright
15 # notice, this list of conditions and the following disclaimer in the
16 # documentation and/or other materials provided with the distribution.
18 # 3. Neither the name of the Institute nor the names of its contributors
19 # may be used to endorse or promote products derived from this software
20 # without specific prior written permission.
22 # THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
23 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 # ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
26 # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 # SUCH DAMAGE.
34 # $Id$
37 srcdir="@srcdir@"
39 rsa="${TESTS_ENVIRONMENT} ./test_rsa@exeext@"
40 engine="${TESTS_ENVIRONMENT} ./test_engine_dso@exeext@"
41 rand="${TESTS_ENVIRONMENT} ./test_rand@exeext@"
43 ${engine} --test-random > /dev/null || { echo "missing random"; exit 77; }
45 ${rsa} --key=${srcdir}/rsakey.der || \
46 { echo "rsa test failed" ; exit 1; }
48 ${rsa} --time-key=${srcdir}/rsakey.der || \
49 { echo "rsa test failed" ; exit 1; }
51 ${rsa} --time-key=${srcdir}/rsakey2048.der || \
52 { echo "rsa test failed" ; exit 1; }
54 ${rsa} --time-key=generate || \
55 { echo "rsa test failed" ; exit 1; }
57 ${engine} --rsa=${srcdir}/rsakey.der || \
58 { echo "engine test failed" ; exit 1; }
60 ${rsa} --loops=4 || { echo "rsa test for 4 loops failed" ; exit 1; }
62 for a in unix fortuna egd w32crypto ;do
63 ${rand} --method=${a} --file=crypto-test 2>error
64 res=$?
65 if test "X$res" != X0 ; then
66 grep "unknown method" error && \
67 { echo "random $a is not available" ; continue; }
68 grep "random not ready yet" error || \
69 { echo "random $a ready failing" ; cat error; exit 1; }
70 echo "random method $a out for lunch"
71 continue
73 ${rand} --method=${a} --file=crypto-test2 2>error
74 res=$?
75 if test "X$res" != X0 ; then
76 grep "random not ready yet" error || \
77 { echo "random $a ready failing" ; cat error; exit 1; }
78 echo "random metod $a out for dinner"
79 continue
81 cmp crypto-test crypto-test2 >/dev/null 2>/dev/null && \
82 { echo "rand output same!" ; exit 1; }
83 done
85 for a in 1 7 15 16 17 31 32 33 ; do
86 ./example_evp_cipher $a ${srcdir}/test_crypto.in test-out-$a ||
87 { echo "$s failed" ; exit 1; }
88 done
89 for a in 7 15 16 17 31 32 33 ; do
90 cmp test-out-1 test-out-$a || { echo "cmp $a failed" ; exit 1; }
91 done
94 # Last time we run is w/o HOME and RANDFILE to make sure we can do
95 # RAND_file_name() when the environment is lacking those.
98 if [ -r /dev/random -o -r /dev/urandom -o -r /dev/srandom -o -r /dev/arandom ] ; then
100 # try hard to unset HOME and RANDFILE
101 HOME=
102 RANDFILE=
104 unset HOME
105 unset RANDFILE
107 ${rand} --method=unix --file=unix 2>error
108 res=$?
109 if test "X$res" != X0 ; then
110 grep "unknown method" error && \
111 { echo "random unix is not available"; exit 0; }
112 grep "random not ready yet" error || \
113 { echo "random unix ready failing" ; cat error; exit 1; }
114 echo "random method unix out for lunch"
115 continue
120 exit 0