commit | c9414e25c4a7828da088ac007ff18e3a592f9098 | [log] [tgz] |
---|---|---|
author | Remi Tricot-Le Breton <rlebreton@haproxy.com> | Tue Feb 08 17:45:59 2022 +0100 |
committer | William Lallemand <wlallemand@haproxy.org> | Wed Feb 09 12:11:31 2022 +0100 |
tree | 9e83a0c7c811e9085151ff7190262057b5b4d4c8 | |
parent | 8ea1f5f6cd4fda36748dd5b7178957c0779e9a58 [diff] |
MINOR: ssl: Remove call to HMAC_Init_ex with OpenSSLv3 HMAC_Init_ex being a function that acts on a low-level HMAC_CTX structure was marked as deprecated in OpenSSLv3. This patch replaces this call by EVP_MAC_CTX_set_params, as advised in the migration_guide, and uses the new OSSL_PARAM mechanism to configure the MAC context, as described in the EVP_MAC and EVP_MAC-HMAC manpages.