- (dtucker) platform.c session.c] Move the USE_LIBIAF fragment into
[openssh-git.git] / regress / kextype.sh
blobba6fd9509427dbc4f8538667aa228ed43ef6c896
1 # $OpenBSD: kextype.sh,v 1.1 2010/09/22 12:26:05 djm Exp $
2 # Placed in the Public Domain.
4 tid="login with different key exchange algorithms"
6 TIME=/usr/bin/time
7 cp $OBJ/sshd_proxy $OBJ/sshd_proxy_bak
8 cp $OBJ/ssh_proxy $OBJ/ssh_proxy_bak
10 kextypes="ecdh-sha2-nistp256 ecdh-sha2-nistp384 ecdh-sha2-nistp521"
11 kextypes="$kextypes diffie-hellman-group-exchange-sha256"
12 kextypes="$kextypes diffie-hellman-group-exchange-sha1"
13 kextypes="$kextypes diffie-hellman-group14-sha1"
14 kextypes="$kextypes diffie-hellman-group1-sha1"
16 tries="1 2 3 4"
17 for 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"
24 done
25 done