summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorRalf S. Engelschall <rse@openssl.org>1999-03-20 13:04:12 +0000
committerRalf S. Engelschall <rse@openssl.org>1999-03-20 13:04:12 +0000
commitafb2306346ea656388c076b461e5c38f1fc56199 (patch)
tree0ccc84aa25fc3fbc2dd9f8b328359aad4e9c33d8 /test
parente2e044faa1eba415459d1844712aefd0d5bad842 (diff)
Some more source tree cleanups (removed obsolete files crypto/bf/asm/bf586.pl,
test/test.txt and crypto/sha/asm/f.s; changed permission on "config" script to be executable) and a fix for the INSTALL document. Submitted by: Ulf Moeller <ulf@fitug.de> Reviewed by: Ralf S. Engelschall
Diffstat (limited to 'test')
-rw-r--r--test/test.txt31
1 files changed, 0 insertions, 31 deletions
diff --git a/test/test.txt b/test/test.txt
deleted file mode 100644
index c6d8d50ba9..0000000000
--- a/test/test.txt
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/sh
-
-test=./test.txt
-
-cat $0 >$test;
-
-for i in rc4 des-cfb des-ofb des-ecb des-cbc des-ede des-ede3 \
- des-cbc-ede des-cbc-ede3 idea-ecb idea-cfb idea-ofb idea-cbc
-do
- echo $i
- ../apps/ssleay $i -e -k test < $test > $test.$i.cipher
- ../apps/ssleay $i -d -k test < $test.$i.cipher >$test.$i.clear
- cmp $test $test.$i.clear
- if [ $? != 0 ]
- then
- exit 1
- else
- /bin/rm $test.$i.cipher $test.$i.clear
- fi
-
- echo $i base64
- ../apps/ssleay $i -a -e -k test < $test > $test.$i.cipher
- ../apps/ssleay $i -a -d -k test < $test.$i.cipher >$test.$i.clear
- cmp $test $test.$i.clear
- if [ $? != 0 ]
- then
- exit 1
- else
- /bin/rm $test.$i.cipher $test.$i.clear
- fi
-done