]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
- dtucker@cvs.openbsd.org 2013/11/08 01:06:14
authorDarren Tucker <dtucker@zip.com.au>
Fri, 8 Nov 2013 01:11:46 +0000 (12:11 +1100)
committerDarren Tucker <dtucker@zip.com.au>
Fri, 8 Nov 2013 01:11:46 +0000 (12:11 +1100)
      [regress/rekey.sh]
      Rekey less frequently during tests to speed them up

ChangeLog
regress/rekey.sh

index 3395772022811f86b77804f74a9dc75712391dc6..ca7cb03e045fabdeb7fd0d8863fb23f50d21381e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+20131108
+ - (dtucker) OpenBSD CVS Sync
+    - dtucker@cvs.openbsd.org 2013/11/08 01:06:14
+      [regress/rekey.sh]
+      Rekey less frequently during tests to speed them up
+
 20131107
  - (djm) [ssh-pkcs11.c] Bring back "non-constant initialiser" fix (rev 1.5)
    that got lost in recent merge.
index 7131a6f0a43e55cf6c87619289d9da7931a6a463..6095da8d5205b18194b1df0f967f4b5d2bfe8fb3 100644 (file)
@@ -1,4 +1,4 @@
-#      $OpenBSD: rekey.sh,v 1.11 2013/11/07 01:12:51 dtucker Exp $
+#      $OpenBSD: rekey.sh,v 1.12 2013/11/08 01:06:14 dtucker Exp $
 #      Placed in the Public Domain.
 
 tid="rekey"
@@ -39,7 +39,7 @@ done
 
 for opt in $opts; do
        verbose "client rekey $opt"
-       ssh_data_rekeying -oRekeyLimit=16 -o$opt
+       ssh_data_rekeying -oRekeyLimit=256k -o$opt
 done
 
 # GCM is magical so test with all KexAlgorithms
@@ -47,7 +47,7 @@ if ${SSH} -Q cipher | grep gcm@openssh.com >/dev/null ; then
   for c in `${SSH} -Q cipher | grep gcm@openssh.com`; do
     for kex in `${SSH} -Q kex`; do
        verbose "client rekey $c $kex"
-       ssh_data_rekeying -oRekeyLimit=16 -oCiphers=$c -oKexAlgorithms=$kex
+       ssh_data_rekeying -oRekeyLimit=256k -oCiphers=$c -oKexAlgorithms=$kex
     done
   done
 fi