summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2010-11-05 10:16:34 +1100
committerDamien Miller <djm@mindrot.org>2010-11-05 10:16:34 +1100
commit3a0e9f6479d50a95b5ccd7d7668b0ff45571de9c (patch)
treed3da12d8bcd9070ad0f0b117c90ef128fd9e30da
parent54b1f3121df1317627a52d9b6d1d854ad977cf76 (diff)
- djm@cvs.openbsd.org 2010/09/22 12:26:05
[regress/Makefile regress/kextype.sh] regress test for each of the key exchange algorithms that we support
-rw-r--r--ChangeLog6
-rw-r--r--regress/Makefile5
-rw-r--r--regress/kextype.sh26
3 files changed, 35 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index bed73463a..2e7f92c94 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
120101105
2 - OpenBSD CVS Sync
3 - djm@cvs.openbsd.org 2010/09/22 12:26:05
4 [regress/Makefile regress/kextype.sh]
5 regress test for each of the key exchange algorithms that we support
6
120101025 720101025
2 - (tim) [openbsd-compat/glob.h] Remove sys/cdefs.h include that came with 8 - (tim) [openbsd-compat/glob.h] Remove sys/cdefs.h include that came with
3 1.12 to unbreak Solaris build. 9 1.12 to unbreak Solaris build.
diff --git a/regress/Makefile b/regress/Makefile
index 9762ab204..f51307f02 100644
--- a/regress/Makefile
+++ b/regress/Makefile
@@ -1,6 +1,6 @@
1# $OpenBSD: Makefile,v 1.54 2010/06/27 19:19:56 phessler Exp $ 1# $OpenBSD: Makefile,v 1.55 2010/08/31 12:24:25 djm Exp $
2 2
3REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 t-exec 3REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 t8 t9 t-exec
4tests: $(REGRESS_TARGETS) 4tests: $(REGRESS_TARGETS)
5 5
6# Interop tests are not run by default 6# Interop tests are not run by default
@@ -61,6 +61,7 @@ INTEROP_TESTS= putty-transfer putty-ciphers putty-kex conch-ciphers
61 61
62USER!= id -un 62USER!= id -un
63CLEANFILES= t2.out t6.out1 t6.out2 t7.out t7.out.pub copy.1 copy.2 \ 63CLEANFILES= t2.out t6.out1 t6.out2 t7.out t7.out.pub copy.1 copy.2 \
64 t8.out t8.out.pub t9.out t9.out.pub \
64 authorized_keys_${USER} known_hosts pidfile \ 65 authorized_keys_${USER} known_hosts pidfile \
65 ssh_config sshd_config.orig ssh_proxy sshd_config sshd_proxy \ 66 ssh_config sshd_config.orig ssh_proxy sshd_config sshd_proxy \
66 rsa.pub rsa rsa1.pub rsa1 host.rsa host.rsa1 \ 67 rsa.pub rsa rsa1.pub rsa1 host.rsa host.rsa1 \
diff --git a/regress/kextype.sh b/regress/kextype.sh
new file mode 100644
index 000000000..ba6fd9509
--- /dev/null
+++ b/regress/kextype.sh
@@ -0,0 +1,26 @@
1# $OpenBSD: kextype.sh,v 1.1 2010/09/22 12:26:05 djm Exp $
2# Placed in the Public Domain.
3
4tid="login with different key exchange algorithms"
5
6TIME=/usr/bin/time
7cp $OBJ/sshd_proxy $OBJ/sshd_proxy_bak
8cp $OBJ/ssh_proxy $OBJ/ssh_proxy_bak
9
10kextypes="ecdh-sha2-nistp256 ecdh-sha2-nistp384 ecdh-sha2-nistp521"
11kextypes="$kextypes diffie-hellman-group-exchange-sha256"
12kextypes="$kextypes diffie-hellman-group-exchange-sha1"
13kextypes="$kextypes diffie-hellman-group14-sha1"
14kextypes="$kextypes diffie-hellman-group1-sha1"
15
16tries="1 2 3 4"
17for k in $kextypes; do
18 verbose "kex $k"
19 for i in $tries; do
20 ${SSH} -F $OBJ/ssh_proxy -o KexAlgorithms=$k x true
21 if [ $? -ne 0 ]; then
22 fail "ssh kex $k"
23 fi
24 done
25done
26