]> andersk Git - gssapi-openssh.git/blob - openssh/regress/putty-ciphers.sh
40435ef41a65f3d530ee8db52e9db9624c5dcb77
[gssapi-openssh.git] / openssh / 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.028326 seconds and 3 git commands to generate.