summaryrefslogtreecommitdiff
path: root/regress/putty-ciphers.sh
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2008-03-13 00:17:00 +1100
committerDamien Miller <djm@mindrot.org>2008-03-13 00:17:00 +1100
commitaf78493bba42cd4351eded064fb63b81fa2867a9 (patch)
tree0eca81431c4b72d3cc1a6f3119a95ad7ffa82fa8 /regress/putty-ciphers.sh
parent4cd5fbab4d73b135e7775d90bb747eca4fca12cd (diff)
- djm@cvs.openbsd.org 2007/12/21 04:13:53
[regress/Makefile regress/test-exec.sh regress/putty-ciphers.sh] [regress/putty-kex.sh regress/putty-transfer.sh regress/ssh2putty.sh] basic (crypto, kex and transfer) interop regression tests against putty To run these, install putty and run "make interop-tests" from the build directory - the tests aren't run by default yet.
Diffstat (limited to 'regress/putty-ciphers.sh')
-rw-r--r--regress/putty-ciphers.sh30
1 files changed, 30 insertions, 0 deletions
diff --git a/regress/putty-ciphers.sh b/regress/putty-ciphers.sh
new file mode 100644
index 000000000..e9196d621
--- /dev/null
+++ b/regress/putty-ciphers.sh
@@ -0,0 +1,30 @@
1# $OpenBSD: putty-ciphers.sh,v 1.1 2007/12/21 04:13:53 djm Exp $
2# Placed in the Public Domain.
3
4tid="putty ciphers"
5
6DATA=/bin/ls
7COPY=${OBJ}/copy
8
9set -e
10
11if test "x$REGRESS_INTEROP_PUTTY" != "xyes" ; then
12 fatal "putty interop tests not enabled"
13fi
14
15for c in aes blowfish 3des arcfour ; do
16 verbose "$tid: cipher $c"
17 cp ${OBJ}/.putty/sessions/localhost_proxy \
18 ${OBJ}/.putty/sessions/cipher_$c
19 echo "Cipher=$c" >> ${OBJ}/.putty/sessions/cipher_$c
20
21 rm -f ${COPY}
22 env HOME=$PWD ${PLINK} -load cipher_$c -batch -i putty.rsa2 \
23 127.0.0.1 cat ${DATA} > ${COPY}
24 if [ $? -ne 0 ]; then
25 fail "ssh cat $DATA failed"
26 fi
27 cmp ${DATA} ${COPY} || fail "corrupted copy"
28done
29rm -f ${COPY}
30