]> git.ipfire.org Git - thirdparty/openssl.git/commit
KDF_CTX_new API has incorrect signature (const should not be there)
authorShakti Shah <shaktishah33@gmail.com>
Sat, 10 Feb 2024 19:39:10 +0000 (01:09 +0530)
committerTomas Mraz <tomas@openssl.org>
Wed, 14 Feb 2024 08:48:09 +0000 (09:48 +0100)
commit4f6133f9db2b9b7ce5e59d8b8ec38202a154c524
treef60fba8b98e3287d5b1953e431fb9e72e31a11bd
parent39fe3e5de159ef193590be70fabc8c9560b53a1a
KDF_CTX_new API has incorrect signature (const should not be there)

https://www.openssl.org/docs/man3.1/man3/EVP_KDF_CTX.html

The pages for 3.0/3.1/master seem to have the following
EVP_KDF_CTX *EVP_KDF_CTX_new(const EVP_KDF *kdf);

which does not match with the actual header which is
EVP_KDF_CTX *EVP_KDF_CTX_new(EVP_KDF *kdf);

Fixes #23532

Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/23541)
doc/man3/EVP_KDF.pod