]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
- dtucker@cvs.openbsd.org 2012/06/28 05:07:45
authorDarren Tucker <dtucker@zip.com.au>
Sat, 30 Jun 2012 05:08:53 +0000 (15:08 +1000)
committerDarren Tucker <dtucker@zip.com.au>
Sat, 30 Jun 2012 05:08:53 +0000 (15:08 +1000)
     [regress/try-ciphers.sh regress/cipher-speed.sh]
     Remove hmac-sha2-256-96 and hmac-sha2-512-96 MACs since they were removed
     from draft6 of the spec and will not be in the RFC when published.  Patch
     from mdb at juniper net via bz#2023, ok markus

ChangeLog
regress/cipher-speed.sh
regress/try-ciphers.sh

index f32a619026eac7598ca4d96940c21768665e3e3e..d40227e2758a1387942f435526ef7e8683a150e4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
    - dtucker@cvs.openbsd.org 2012/06/26 12:06:59
      [regress/connect-privsep.sh]
      test sandbox with every malloc option
+   - dtucker@cvs.openbsd.org 2012/06/28 05:07:45
+     [regress/try-ciphers.sh regress/cipher-speed.sh]
+     Remove hmac-sha2-256-96 and hmac-sha2-512-96 MACs since they were removed
+     from draft6 of the spec and will not be in the RFC when published.  Patch
+     from mdb at juniper net via bz#2023, ok markus.
 
 20120628
  - (dtucker) [openbsd-compat/getrrsetbyname-ldns.c] bz #2022: prevent null
index 257afd17931f0d6e2cb8d0c71968f4419de84367..5800f4b0975844d9d721c5e4caf7e35ac21634da 100644 (file)
@@ -1,4 +1,4 @@
-#      $OpenBSD: cipher-speed.sh,v 1.4 2011/08/02 01:23:41 djm Exp $
+#      $OpenBSD: cipher-speed.sh,v 1.5 2012/06/28 05:07:45 dtucker Exp $
 #      Placed in the Public Domain.
 
 tid="cipher speed"
@@ -18,7 +18,7 @@ ciphers="aes128-cbc 3des-cbc blowfish-cbc cast128-cbc
        aes128-ctr aes192-ctr aes256-ctr"
 macs="hmac-sha1 hmac-md5 umac-64@openssh.com hmac-sha1-96 hmac-md5-96"
 config_defined HAVE_EVP_SHA256 &&
-    macs="$macs hmac-sha2-256 hmac-sha2-256-96 hmac-sha2-512 hmac-sha2-512-96"
+    macs="$macs hmac-sha2-256 hmac-sha2-512"
 
 for c in $ciphers; do for m in $macs; do
        trace "proto 2 cipher $c mac $m"
index 0918d224567d9b5d01f413a0f0be667967098311..925863504d563bdaf030d0930aeeda84040cc312 100644 (file)
@@ -1,4 +1,4 @@
-#      $OpenBSD: try-ciphers.sh,v 1.12 2011/08/02 01:23:41 djm Exp $
+#      $OpenBSD: try-ciphers.sh,v 1.13 2012/06/28 05:07:45 dtucker Exp $
 #      Placed in the Public Domain.
 
 tid="try ciphers"
@@ -9,7 +9,7 @@ ciphers="aes128-cbc 3des-cbc blowfish-cbc cast128-cbc
        aes128-ctr aes192-ctr aes256-ctr"
 macs="hmac-sha1 hmac-md5 umac-64@openssh.com hmac-sha1-96 hmac-md5-96"
 config_defined HAVE_EVP_SHA256 &&
-    macs="$macs hmac-sha2-256 hmac-sha2-256-96 hmac-sha2-512 hmac-sha2-512-96"
+    macs="$macs hmac-sha2-256 hmac-sha2-512"
 
 for c in $ciphers; do
        for m in $macs; do