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