Remove OpenSSL Engine support

The OpenSSL 1.x Engines support has been deprecated in the OpenSSL 3.x
and is going to be removed.  Remove the OpenSSL Engine support in favor
of OpenSSL Providers.
This commit is contained in:
Ondřej Surý
2024-08-05 11:40:42 +02:00
parent 1688c96bda
commit ef7aba7072
69 changed files with 161 additions and 575 deletions

View File

@@ -47,7 +47,7 @@ static int
setup_test(void **state) {
UNUSED(state);
dst_lib_init(mctx, NULL);
dst_lib_init(mctx);
return (0);
}

View File

@@ -43,7 +43,7 @@ setup_test(void **state) {
UNUSED(state);
result = dst_lib_init(mctx, NULL);
result = dst_lib_init(mctx);
if (result != ISC_R_SUCCESS) {
return (1);

View File

@@ -43,7 +43,7 @@ setup_test(void **state) {
UNUSED(state);
result = dst_lib_init(mctx, NULL);
result = dst_lib_init(mctx);
if (result != ISC_R_SUCCESS) {
return (1);

View File

@@ -77,7 +77,7 @@ setup_test(void **state) {
UNUSED(state);
result = dst_lib_init(mctx, NULL);
result = dst_lib_init(mctx);
if (result != ISC_R_SUCCESS) {
return (1);

View File

@@ -54,7 +54,7 @@ setup_test(void **state) {
UNUSED(state);
result = dst_lib_init(mctx, NULL);
result = dst_lib_init(mctx);
if (result != ISC_R_SUCCESS) {
return (1);