]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Increase HKDF_MAXBUF from 1024 to 2048
authorBenjamin Kaduk <bkaduk@akamai.com>
Mon, 22 Mar 2021 22:02:04 +0000 (15:02 -0700)
committerBenjamin Kaduk <kaduk@mit.edu>
Tue, 30 Mar 2021 23:40:28 +0000 (16:40 -0700)
We've encountered some scenarios that need to use more than 1 kB of
data as the HKDF-Expand() "info" argument (which, per RFC 5869,
contains "optional context and application specific information").

Since HKDF_MAXBUF is used to size an array in the HKDF_PKEY_CTX
structure, this adds 1 kB of memory footprint to each EVP_PKEY_CTX
used for HKDF.

Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14649)

providers/implementations/kdfs/hkdf.c

index 52b284c662b2b22104ead4b4b5df69a4a5edec96..2d3c72f501df6c338af047fc63e186e80a5b9b69 100644 (file)
@@ -30,7 +30,7 @@
 #include "prov/provider_util.h"
 #include "e_os.h"
 
-#define HKDF_MAXBUF 1024
+#define HKDF_MAXBUF 2048
 
 static OSSL_FUNC_kdf_newctx_fn kdf_hkdf_new;
 static OSSL_FUNC_kdf_freectx_fn kdf_hkdf_free;