summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--regress/rekey.sh6
2 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 339577202..ca7cb03e0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
120131108
2 - (dtucker) OpenBSD CVS Sync
3 - dtucker@cvs.openbsd.org 2013/11/08 01:06:14
4 [regress/rekey.sh]
5 Rekey less frequently during tests to speed them up
6
120131107 720131107
2 - (djm) [ssh-pkcs11.c] Bring back "non-constant initialiser" fix (rev 1.5) 8 - (djm) [ssh-pkcs11.c] Bring back "non-constant initialiser" fix (rev 1.5)
3 that got lost in recent merge. 9 that got lost in recent merge.
diff --git a/regress/rekey.sh b/regress/rekey.sh
index 7131a6f0a..6095da8d5 100644
--- a/regress/rekey.sh
+++ b/regress/rekey.sh
@@ -1,4 +1,4 @@
1# $OpenBSD: rekey.sh,v 1.11 2013/11/07 01:12:51 dtucker Exp $ 1# $OpenBSD: rekey.sh,v 1.12 2013/11/08 01:06:14 dtucker Exp $
2# Placed in the Public Domain. 2# Placed in the Public Domain.
3 3
4tid="rekey" 4tid="rekey"
@@ -39,7 +39,7 @@ done
39 39
40for opt in $opts; do 40for opt in $opts; do
41 verbose "client rekey $opt" 41 verbose "client rekey $opt"
42 ssh_data_rekeying -oRekeyLimit=16 -o$opt 42 ssh_data_rekeying -oRekeyLimit=256k -o$opt
43done 43done
44 44
45# GCM is magical so test with all KexAlgorithms 45# GCM is magical so test with all KexAlgorithms
@@ -47,7 +47,7 @@ if ${SSH} -Q cipher | grep gcm@openssh.com >/dev/null ; then
47 for c in `${SSH} -Q cipher | grep gcm@openssh.com`; do 47 for c in `${SSH} -Q cipher | grep gcm@openssh.com`; do
48 for kex in `${SSH} -Q kex`; do 48 for kex in `${SSH} -Q kex`; do
49 verbose "client rekey $c $kex" 49 verbose "client rekey $c $kex"
50 ssh_data_rekeying -oRekeyLimit=16 -oCiphers=$c -oKexAlgorithms=$kex 50 ssh_data_rekeying -oRekeyLimit=256k -oCiphers=$c -oKexAlgorithms=$kex
51 done 51 done
52 done 52 done
53fi 53fi