diff options
author | dcruette <dcruette@qualitesys.com> | 2019-12-24 22:48:19 +0100 |
---|---|---|
committer | Dr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> | 2020-01-02 13:49:41 +0100 |
commit | 2de5a5fbdd14f514e962cccfe90482c37786c183 (patch) | |
tree | ad66dca4682e1bcdea4898cf3ae81d373dd879d0 /ssl/tls13_enc.c | |
parent | Temporarily disable the explicit enable-asan build (diff) | |
download | openssl-2de5a5fbdd14f514e962cccfe90482c37786c183.tar.xz openssl-2de5a5fbdd14f514e962cccfe90482c37786c183.zip |
Update tls13_enc.c
Fix double + in hkdflabel declaration (FIXES #10675)
CLA: trivial
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Kurt Roeckx <kurt@roeckx.be>
Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>
(Merged from https://github.com/openssl/openssl/pull/10700)
Diffstat (limited to 'ssl/tls13_enc.c')
-rw-r--r-- | ssl/tls13_enc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/tls13_enc.c b/ssl/tls13_enc.c index 266b7dfd21..9c44813ccb 100644 --- a/ssl/tls13_enc.c +++ b/ssl/tls13_enc.c @@ -49,7 +49,7 @@ int tls13_hkdf_expand(SSL *s, const EVP_MD *md, const unsigned char *secret, * prefix and label + bytes for the label itself + 1 byte length of hash * + bytes for the hash itself */ - unsigned char hkdflabel[sizeof(uint16_t) + sizeof(uint8_t) + + unsigned char hkdflabel[sizeof(uint16_t) + sizeof(uint8_t) + (sizeof(label_prefix) - 1) + TLS13_MAX_LABEL_LEN + 1 + EVP_MAX_MD_SIZE]; WPACKET pkt; |