From 3a5967ba620849839e71ee304c09a6998109466a Mon Sep 17 00:00:00 2001 From: Petr Gotthard Date: Mon, 2 Aug 2021 15:50:26 +0200 Subject: [PATCH 04/23] Remove deprecated OpenSSL_add_all_algorithms From OpenSSL 1.1.0 it is deprecated. No explicit initialisation or de-initialisation is required. Signed-off-by: Petr Gotthard --- src/tss2-esys/esys_crypto_ossl.c | 2 +- src/tss2-fapi/ifapi_get_intl_cert.c | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/tss2-esys/esys_crypto_ossl.c b/src/tss2-esys/esys_crypto_ossl.c index 6856e92d..ab08b3b8 100644 --- a/src/tss2-esys/esys_crypto_ossl.c +++ b/src/tss2-esys/esys_crypto_ossl.c @@ -1173,7 +1173,7 @@ iesys_cryptossl_sym_aes_decrypt(uint8_t * key, * * Initialize OpenSSL internal tables. * - * @retval TSS2_RC_SUCCESS always returned because OpenSSL_add_all_algorithms + * @retval TSS2_RC_SUCCESS always returned * does not deliver * a return code. */ diff --git a/src/tss2-fapi/ifapi_get_intl_cert.c b/src/tss2-fapi/ifapi_get_intl_cert.c index 9290a17e..35186e62 100644 --- a/src/tss2-fapi/ifapi_get_intl_cert.c +++ b/src/tss2-fapi/ifapi_get_intl_cert.c @@ -375,9 +375,6 @@ out_free_json: json_object_put(jso); out: - /* In some case this call was necessary after curl usage */ - OpenSSL_add_all_algorithms(); - free(hash); if (rc == 0) { return TSS2_RC_SUCCESS; -- 2.34.3