summaryrefslogtreecommitdiff
path: root/regress/try-ciphers.sh
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2004-02-29 20:38:26 +1100
committerDarren Tucker <dtucker@zip.com.au>2004-02-29 20:38:26 +1100
commit9468ba33a1d1a5fd6258658dee1058500e1082f0 (patch)
tree39ee8b53ec0eacdee6840f813b9560211afad235 /regress/try-ciphers.sh
parent68b184c75d771f6a878e09e1fafc66e293e8ba27 (diff)
downloadopenssh-git-9468ba33a1d1a5fd6258658dee1058500e1082f0.tar.gz
- dtucker@cvs.openbsd.org 2004/02/28 13:44:45
[regress/try-ciphers.sh] Test acss too; ok markus@
Diffstat (limited to 'regress/try-ciphers.sh')
-rw-r--r--regress/try-ciphers.sh13
1 files changed, 12 insertions, 1 deletions
diff --git a/regress/try-ciphers.sh b/regress/try-ciphers.sh
index 2c727f66..103f410a 100644
--- a/regress/try-ciphers.sh
+++ b/regress/try-ciphers.sh
@@ -1,4 +1,4 @@
-# $OpenBSD: try-ciphers.sh,v 1.8 2003/06/12 15:40:01 markus Exp $
+# $OpenBSD: try-ciphers.sh,v 1.9 2004/02/28 13:44:45 dtucker Exp $
# Placed in the Public Domain.
tid="try ciphers"
@@ -28,3 +28,14 @@ for c in $ciphers; do
fail "ssh -1 failed with cipher $c"
fi
done
+
+echo "Ciphers acss@openssh.org" >> $OBJ/sshd_proxy
+c=acss@openssh.org
+for m in $macs; do
+ trace "proto 2 $c mac $m"
+ verbose "test $tid: proto 2 cipher $c mac $m"
+ ${SSH} -F $OBJ/ssh_proxy -2 -m $m -c $c somehost true
+ if [ $? -ne 0 ]; then
+ fail "ssh -2 failed with mac $m cipher $c"
+ fi
+done