commit | 2559bc831885b7a8462822eee5c2b78232a60ea0 | [log] [tgz] |
---|---|---|
author | Remi Tricot-Le Breton <rlebreton@haproxy.com> | Tue Feb 08 17:45:53 2022 +0100 |
committer | William Lallemand <wlallemand@haproxy.org> | Wed Feb 09 11:15:44 2022 +0100 |
tree | 1eef11b6aa6871fdd68464aacd6c95fd9c193f32 | |
parent | 36f80f6e0b648b7d4511f9de6c17bdfb75177030 [diff] |
MINOR: ssl: Use high level OpenSSL APIs in sha2 converter The sha2 converter's implementation used low level interfaces such as SHA256_Update which are flagged as deprecated starting from OpenSSLv3. This patch replaces those calls by EVP ones which already existed on older versions. It should be fully isofunctional.