1# $OpenBSD: putty-ciphers.sh,v 1.6 2017/05/08 01:52:49 djm Exp $ 2# Placed in the Public Domain. 3 4tid="putty ciphers" 5 6if test "x$REGRESS_INTEROP_PUTTY" != "xyes" ; then 7 echo "putty interop tests not enabled" 8 exit 0 9fi 10 11for c in aes 3des aes128-ctr aes192-ctr aes256-ctr ; do 12 verbose "$tid: cipher $c" 13 cp ${OBJ}/.putty/sessions/localhost_proxy \ 14 ${OBJ}/.putty/sessions/cipher_$c 15 echo "Cipher=$c" >> ${OBJ}/.putty/sessions/cipher_$c 16 17 rm -f ${COPY} 18 env HOME=$PWD ${PLINK} -load cipher_$c -batch -i ${OBJ}/putty.rsa2 \ 19 cat ${DATA} > ${COPY} 20 if [ $? -ne 0 ]; then 21 fail "ssh cat $DATA failed" 22 fi 23 cmp ${DATA} ${COPY} || fail "corrupted copy" 24done 25rm -f ${COPY} 26 27