diff options
Diffstat (limited to 'regress/usr.bin/ssh/try-ciphers.sh')
-rw-r--r-- | regress/usr.bin/ssh/try-ciphers.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/regress/usr.bin/ssh/try-ciphers.sh b/regress/usr.bin/ssh/try-ciphers.sh index be125ac0ccc..89798b4f0ae 100644 --- a/regress/usr.bin/ssh/try-ciphers.sh +++ b/regress/usr.bin/ssh/try-ciphers.sh @@ -5,7 +5,8 @@ macs="hmac-sha1 hmac-md5 hmac-sha1-96 hmac-md5-96" for c in $ciphers; do for m in $macs; do - ssh -F $OBJ/ssh_config -2 -m $m -c $c somehost true + trace "proto 2 mac $m cipher $c" + 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 @@ -14,7 +15,8 @@ done ciphers="3des blowfish" for c in $ciphers; do - ssh -F $OBJ/ssh_config -1 -c $c somehost true + trace "proto 1 cipher $c" + ssh -F $OBJ/ssh_proxy -1 -c $c somehost true if [ $? -ne 0 ]; then fail "ssh -1 failed with cipher $c" fi |