diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | regress/cipher-speed.sh | 4 | ||||
-rw-r--r-- | regress/try-ciphers.sh | 4 |
3 files changed, 9 insertions, 4 deletions
@@ -38,6 +38,11 @@ | |||
38 | - dtucker@cvs.openbsd.org 2012/06/26 12:06:59 | 38 | - dtucker@cvs.openbsd.org 2012/06/26 12:06:59 |
39 | [regress/connect-privsep.sh] | 39 | [regress/connect-privsep.sh] |
40 | test sandbox with every malloc option | 40 | test sandbox with every malloc option |
41 | - dtucker@cvs.openbsd.org 2012/06/28 05:07:45 | ||
42 | [regress/try-ciphers.sh regress/cipher-speed.sh] | ||
43 | Remove hmac-sha2-256-96 and hmac-sha2-512-96 MACs since they were removed | ||
44 | from draft6 of the spec and will not be in the RFC when published. Patch | ||
45 | from mdb at juniper net via bz#2023, ok markus. | ||
41 | 46 | ||
42 | 20120628 | 47 | 20120628 |
43 | - (dtucker) [openbsd-compat/getrrsetbyname-ldns.c] bz #2022: prevent null | 48 | - (dtucker) [openbsd-compat/getrrsetbyname-ldns.c] bz #2022: prevent null |
diff --git a/regress/cipher-speed.sh b/regress/cipher-speed.sh index 257afd179..5800f4b09 100644 --- a/regress/cipher-speed.sh +++ b/regress/cipher-speed.sh | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: cipher-speed.sh,v 1.4 2011/08/02 01:23:41 djm Exp $ | 1 | # $OpenBSD: cipher-speed.sh,v 1.5 2012/06/28 05:07:45 dtucker Exp $ |
2 | # Placed in the Public Domain. | 2 | # Placed in the Public Domain. |
3 | 3 | ||
4 | tid="cipher speed" | 4 | tid="cipher speed" |
@@ -18,7 +18,7 @@ ciphers="aes128-cbc 3des-cbc blowfish-cbc cast128-cbc | |||
18 | aes128-ctr aes192-ctr aes256-ctr" | 18 | aes128-ctr aes192-ctr aes256-ctr" |
19 | macs="hmac-sha1 hmac-md5 umac-64@openssh.com hmac-sha1-96 hmac-md5-96" | 19 | macs="hmac-sha1 hmac-md5 umac-64@openssh.com hmac-sha1-96 hmac-md5-96" |
20 | config_defined HAVE_EVP_SHA256 && | 20 | config_defined HAVE_EVP_SHA256 && |
21 | macs="$macs hmac-sha2-256 hmac-sha2-256-96 hmac-sha2-512 hmac-sha2-512-96" | 21 | macs="$macs hmac-sha2-256 hmac-sha2-512" |
22 | 22 | ||
23 | for c in $ciphers; do for m in $macs; do | 23 | for c in $ciphers; do for m in $macs; do |
24 | trace "proto 2 cipher $c mac $m" | 24 | trace "proto 2 cipher $c mac $m" |
diff --git a/regress/try-ciphers.sh b/regress/try-ciphers.sh index 0918d2245..925863504 100644 --- a/regress/try-ciphers.sh +++ b/regress/try-ciphers.sh | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: try-ciphers.sh,v 1.12 2011/08/02 01:23:41 djm Exp $ | 1 | # $OpenBSD: try-ciphers.sh,v 1.13 2012/06/28 05:07:45 dtucker Exp $ |
2 | # Placed in the Public Domain. | 2 | # Placed in the Public Domain. |
3 | 3 | ||
4 | tid="try ciphers" | 4 | tid="try ciphers" |
@@ -9,7 +9,7 @@ ciphers="aes128-cbc 3des-cbc blowfish-cbc cast128-cbc | |||
9 | aes128-ctr aes192-ctr aes256-ctr" | 9 | aes128-ctr aes192-ctr aes256-ctr" |
10 | macs="hmac-sha1 hmac-md5 umac-64@openssh.com hmac-sha1-96 hmac-md5-96" | 10 | macs="hmac-sha1 hmac-md5 umac-64@openssh.com hmac-sha1-96 hmac-md5-96" |
11 | config_defined HAVE_EVP_SHA256 && | 11 | config_defined HAVE_EVP_SHA256 && |
12 | macs="$macs hmac-sha2-256 hmac-sha2-256-96 hmac-sha2-512 hmac-sha2-512-96" | 12 | macs="$macs hmac-sha2-256 hmac-sha2-512" |
13 | 13 | ||
14 | for c in $ciphers; do | 14 | for c in $ciphers; do |
15 | for m in $macs; do | 15 | for m in $macs; do |