[openssl-commits] [openssl] OpenSSL_1_1_1-stable update
bernd.edlinger at hotmail.de
bernd.edlinger at hotmail.de
Sun Dec 30 16:22:22 UTC 2018
The branch OpenSSL_1_1_1-stable has been updated
via 3be71a31a1dda204bb95462a92cf7f247e64b939 (commit)
from 30e35ee1d54a7ad55ba724da795c513f07653252 (commit)
- Log -----------------------------------------------------------------
commit 3be71a31a1dda204bb95462a92cf7f247e64b939
Author: Bernd Edlinger <bernd.edlinger at hotmail.de>
Date: Sun Dec 16 12:43:59 2018 +0100
Fix a minor nit in the hkdflabel size
Reviewed-by: Paul Dale <paul.dale at oracle.com>
Reviewed-by: Matt Caswell <matt at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/7913)
(cherry picked from commit 0b4233f5a4a181a6dcb7c511cd2663e500e659a4)
-----------------------------------------------------------------------
Summary of changes:
ssl/tls13_enc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ssl/tls13_enc.c b/ssl/tls13_enc.c
index c3021d1..e36b7d3 100644
--- a/ssl/tls13_enc.c
+++ b/ssl/tls13_enc.c
@@ -41,7 +41,7 @@ int tls13_hkdf_expand(SSL *s, const EVP_MD *md, const unsigned char *secret,
* + bytes for the hash itself
*/
unsigned char hkdflabel[sizeof(uint16_t) + sizeof(uint8_t) +
- + sizeof(label_prefix) + TLS13_MAX_LABEL_LEN
+ + (sizeof(label_prefix) - 1) + TLS13_MAX_LABEL_LEN
+ 1 + EVP_MAX_MD_SIZE];
WPACKET pkt;
More information about the openssl-commits
mailing list