]> andersk Git - openssh.git/blob - regress/putty-ciphers.sh
- djm@cvs.openbsd.org 2008/06/30 10:43:03
[openssh.git] / regress / putty-ciphers.sh
1 #       $OpenBSD: putty-ciphers.sh,v 1.2 2008/06/30 10:31:11 djm Exp $
2 #       Placed in the Public Domain.
3
4 tid="putty ciphers"
5
6 DATA=/bin/ls
7 COPY=${OBJ}/copy
8
9 if test "x$REGRESS_INTEROP_PUTTY" != "xyes" ; then
10         fatal "putty interop tests not enabled"
11 fi
12
13 for c in aes blowfish 3des arcfour ; do
14         verbose "$tid: cipher $c"
15         cp ${OBJ}/.putty/sessions/localhost_proxy \
16             ${OBJ}/.putty/sessions/cipher_$c
17         echo "Cipher=$c" >> ${OBJ}/.putty/sessions/cipher_$c
18
19         rm -f ${COPY}
20         env HOME=$PWD ${PLINK} -load cipher_$c -batch -i putty.rsa2 \
21             127.0.0.1 cat ${DATA} > ${COPY}
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
This page took 0.074542 seconds and 5 git commands to generate.