summaryrefslogtreecommitdiff
path: root/regress/conch-ciphers.sh
blob: c371d30304a34034c5250e8aac1bf6021b92df60 (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
30
#	$OpenBSD: conch-ciphers.sh,v 1.1 2008/06/28 13:57:25 djm Exp $
#	Placed in the Public Domain.

tid="conch ciphers"

DATA=/bin/ls
COPY=${OBJ}/copy

set -e

if test "x$REGRESS_INTEROP_CONCH" != "xyes" ; then
	fatal "conch interop tests not enabled"
fi

start_sshd

for c in aes256-ctr aes256-cbc aes192-ctr aes192-cbc aes128-ctr aes128-cbc \
         cast128-cbc blowfish 3des-cbc ; do
	verbose "$tid: cipher $c"
	rm -f ${COPY}
	${CONCH} --identity $OBJ/rsa --port $PORT --user $USER \
	         --known-hosts $OBJ/known_hosts \
	         127.0.0.1 cat ${DATA} > ${COPY} 2>/dev/null
	if [ $? -ne 0 ]; then
		fail "ssh cat $DATA failed"
	fi
	cmp ${DATA} ${COPY}		|| fail "corrupted copy"
done
rm -f ${COPY}