summaryrefslogtreecommitdiff
path: root/regress/try-ciphers.sh
diff options
context:
space:
mode:
Diffstat (limited to 'regress/try-ciphers.sh')
-rw-r--r--regress/try-ciphers.sh18
1 files changed, 17 insertions, 1 deletions
diff --git a/regress/try-ciphers.sh b/regress/try-ciphers.sh
index 2c727f66c..15827e250 100644
--- a/regress/try-ciphers.sh
+++ b/regress/try-ciphers.sh
@@ -1,4 +1,4 @@
1# $OpenBSD: try-ciphers.sh,v 1.8 2003/06/12 15:40:01 markus Exp $ 1# $OpenBSD: try-ciphers.sh,v 1.9 2004/02/28 13:44:45 dtucker Exp $
2# Placed in the Public Domain. 2# Placed in the Public Domain.
3 3
4tid="try ciphers" 4tid="try ciphers"
@@ -28,3 +28,19 @@ for c in $ciphers; do
28 fail "ssh -1 failed with cipher $c" 28 fail "ssh -1 failed with cipher $c"
29 fi 29 fi
30done 30done
31
32if ! ${SSH} -oCiphers=acss@openssh.org 2>&1 | grep "Bad SSH2 cipher" >/dev/null
33then
34
35echo "Ciphers acss@openssh.org" >> $OBJ/sshd_proxy
36c=acss@openssh.org
37for m in $macs; do
38 trace "proto 2 $c mac $m"
39 verbose "test $tid: proto 2 cipher $c mac $m"
40 ${SSH} -F $OBJ/ssh_proxy -2 -m $m -c $c somehost true
41 if [ $? -ne 0 ]; then
42 fail "ssh -2 failed with mac $m cipher $c"
43 fi
44done
45
46fi