components/openssl/openssl-1.0.1/patches/31_dtls_version.patch
author Misaki Miyashita <Misaki.Miyashita@Oracle.COM>
Wed, 17 Jul 2013 15:19:38 -0700
branchs11-update
changeset 2681 f7ee98f5749e
parent 2593 b92e6df5eaf0
permissions -rw-r--r--
PSARC 2013/034 OpenSSL 1.0.1 15824598 SUNBT7206150 T4 AES should be embedded in the OpenSSL upstream src

--- openssl-1.0.1e/ssl/s3_cbc.c	2013-02-14 08:06:58.000000000 -0800
+++ openssl-1.0.1e/ssl/s3_cbc.c.orig 2013-02-14 03:04:08.440194448 -0700
@@ -148,7 +148,7 @@
 	unsigned padding_length, good, to_check, i;
 	const unsigned overhead = 1 /* padding length byte */ + mac_size;
 	/* Check if version requires explicit IV */
-	if (s->version >= TLS1_1_VERSION || s->version == DTLS1_VERSION)
+	if (s->version >= TLS1_1_VERSION || s->version == DTLS1_BAD_VER)
 		{
 		/* These lengths are all public so we can test them in
 		 * non-constant time.