Darren Tucker | 59d928d | 2013-05-17 15:32:29 +1000 | [diff] [blame] | 1 | # $OpenBSD: conch-ciphers.sh,v 1.3 2013/05/17 04:29:14 dtucker Exp $ |
Damien Miller | 4268a13 | 2008-06-30 08:07:56 +1000 | [diff] [blame] | 2 | # Placed in the Public Domain. |
| 3 | |
| 4 | tid="conch ciphers" |
| 5 | |
Damien Miller | 4268a13 | 2008-06-30 08:07:56 +1000 | [diff] [blame] | 6 | if test "x$REGRESS_INTEROP_CONCH" != "xyes" ; then |
Damien Miller | 3f94aaf | 2009-02-16 15:21:39 +1100 | [diff] [blame] | 7 | echo "conch interop tests not enabled" |
| 8 | exit 0 |
Damien Miller | 4268a13 | 2008-06-30 08:07:56 +1000 | [diff] [blame] | 9 | fi |
| 10 | |
| 11 | start_sshd |
| 12 | |
| 13 | for 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 Tucker | b01bac1 | 2008-07-04 17:11:30 +1000 | [diff] [blame] | 17 | # 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 Miller | 4268a13 | 2008-06-30 08:07:56 +1000 | [diff] [blame] | 22 | if [ $? -ne 0 ]; then |
| 23 | fail "ssh cat $DATA failed" |
| 24 | fi |
| 25 | cmp ${DATA} ${COPY} || fail "corrupted copy" |
| 26 | done |
| 27 | rm -f ${COPY} |
| 28 | |