diff options
author | Darren Tucker <dtucker@zip.com.au> | 2013-11-07 15:26:12 +1100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2013-11-07 15:26:12 +1100 |
commit | 74cbc22529f3e5de756e1b7677b7624efb28f62c (patch) | |
tree | edf7a1d85e7f9897ac1d90e8226d5e1b09cd505b /regress | |
parent | a955041c930e63405159ff7d25ef14272f36eab3 (diff) |
- dtucker@cvs.openbsd.org 2013/11/07 03:55:41
[regress/kextype.sh]
Use ssh -Q to get kex types instead of a static list.
Diffstat (limited to 'regress')
-rw-r--r-- | regress/kextype.sh | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/regress/kextype.sh b/regress/kextype.sh index 1cca12637..278c73e58 100644 --- a/regress/kextype.sh +++ b/regress/kextype.sh | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: kextype.sh,v 1.2 2013/11/02 22:39:53 markus Exp $ | 1 | # $OpenBSD: kextype.sh,v 1.3 2013/11/07 03:55:41 dtucker Exp $ |
2 | # Placed in the Public Domain. | 2 | # Placed in the Public Domain. |
3 | 3 | ||
4 | tid="login with different key exchange algorithms" | 4 | tid="login with different key exchange algorithms" |
@@ -7,19 +7,8 @@ TIME=/usr/bin/time | |||
7 | cp $OBJ/sshd_proxy $OBJ/sshd_proxy_bak | 7 | cp $OBJ/sshd_proxy $OBJ/sshd_proxy_bak |
8 | cp $OBJ/ssh_proxy $OBJ/ssh_proxy_bak | 8 | cp $OBJ/ssh_proxy $OBJ/ssh_proxy_bak |
9 | 9 | ||
10 | if test "$TEST_SSH_ECC" = "yes"; then | ||
11 | kextypes="ecdh-sha2-nistp256 ecdh-sha2-nistp384 ecdh-sha2-nistp521" | ||
12 | fi | ||
13 | if test "$TEST_SSH_SHA256" = "yes"; then | ||
14 | kextypes="$kextypes diffie-hellman-group-exchange-sha256" | ||
15 | fi | ||
16 | kextypes="$kextypes diffie-hellman-group-exchange-sha1" | ||
17 | kextypes="$kextypes diffie-hellman-group14-sha1" | ||
18 | kextypes="$kextypes diffie-hellman-group1-sha1" | ||
19 | kextypes="$kextypes curve25519-sha256@libssh.org" | ||
20 | |||
21 | tries="1 2 3 4" | 10 | tries="1 2 3 4" |
22 | for k in $kextypes; do | 11 | for k in `${SSH} -Q kex`; do |
23 | verbose "kex $k" | 12 | verbose "kex $k" |
24 | for i in $tries; do | 13 | for i in $tries; do |
25 | ${SSH} -F $OBJ/ssh_proxy -o KexAlgorithms=$k x true | 14 | ${SSH} -F $OBJ/ssh_proxy -o KexAlgorithms=$k x true |