blob: 5b65cd993ad4000e75bdba21d1b4bdeace76d5d8 [file] [log] [blame]
Darren Tuckerb01bac12008-07-04 17:11:30 +10001# $OpenBSD: conch-ciphers.sh,v 1.2 2008/06/30 10:43:03 djm Exp $
Damien Miller4268a132008-06-30 08:07:56 +10002# Placed in the Public Domain.
3
4tid="conch ciphers"
5
6DATA=/bin/ls
7COPY=${OBJ}/copy
8
Damien Miller4268a132008-06-30 08:07:56 +10009if test "x$REGRESS_INTEROP_CONCH" != "xyes" ; then
Damien Miller3f94aaf2009-02-16 15:21:39 +110010 echo "conch interop tests not enabled"
11 exit 0
Damien Miller4268a132008-06-30 08:07:56 +100012fi
13
14start_sshd
15
16for c in aes256-ctr aes256-cbc aes192-ctr aes192-cbc aes128-ctr aes128-cbc \
17 cast128-cbc blowfish 3des-cbc ; do
18 verbose "$tid: cipher $c"
19 rm -f ${COPY}
Darren Tuckerb01bac12008-07-04 17:11:30 +100020 # XXX the 2nd "cat" seems to be needed because of buggy FD handling
21 # in conch
22 ${CONCH} --identity $OBJ/rsa --port $PORT --user $USER -e none \
23 --known-hosts $OBJ/known_hosts --notty --noagent --nox11 -n \
24 127.0.0.1 "cat ${DATA}" 2>/dev/null | cat > ${COPY}
Damien Miller4268a132008-06-30 08:07:56 +100025 if [ $? -ne 0 ]; then
26 fail "ssh cat $DATA failed"
27 fi
28 cmp ${DATA} ${COPY} || fail "corrupted copy"
29done
30rm -f ${COPY}
31