summaryrefslogtreecommitdiffstats
path: root/test/evp_extra_test.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2019-09-03 17:47:13 +0200
committerRichard Levitte <levitte@openssl.org>2019-09-04 10:38:13 +0200
commit3fd7026276475d72a3b5bbbe42cd1f5ff6b0e736 (patch)
treeff3ecbeaebf4ee6fbe3db1b842e4e6797d9c2580 /test/evp_extra_test.c
parent8648a50a2704307fa4633b3d11724dfdae11f125 (diff)
New function EVP_MD_free()
This function re-implements EVP_MD_meth_free(), but has a name that isn't encumbered by legacy EVP_MD construction functionality. We also refactor most of EVP_MD_meth_new() into an internal evp_md_new() that's used when creating fetched methods. EVP_MD_meth_new() and EVP_MD_meth_free() are rewritten in terms of evp_md_new() and EVP_MD_free(). This means that at any time, we can deprecate all the EVP_MD_meth_ functions with no harmful consequence. Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/9758)
Diffstat (limited to 'test/evp_extra_test.c')
-rw-r--r--test/evp_extra_test.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/evp_extra_test.c b/test/evp_extra_test.c
index f187f73bf0..eba7f64bab 100644
--- a/test/evp_extra_test.c
+++ b/test/evp_extra_test.c
@@ -1154,8 +1154,8 @@ static int test_EVP_MD_fetch(int tst)
if (!TEST_true(EVP_MD_up_ref(md)))
goto err;
/* Ref count should now be 2. Release both */
- EVP_MD_meth_free(md);
- EVP_MD_meth_free(md);
+ EVP_MD_free(md);
+ EVP_MD_free(md);
md = NULL;
/*
@@ -1174,7 +1174,7 @@ static int test_EVP_MD_fetch(int tst)
goto err;
}
- EVP_MD_meth_free(md);
+ EVP_MD_free(md);
md = NULL;
/*
@@ -1195,7 +1195,7 @@ static int test_EVP_MD_fetch(int tst)
goto err;
}
- EVP_MD_meth_free(md);
+ EVP_MD_free(md);
md = NULL;
/*
@@ -1217,7 +1217,7 @@ static int test_EVP_MD_fetch(int tst)
ret = 1;
err:
- EVP_MD_meth_free(md);
+ EVP_MD_free(md);
OSSL_PROVIDER_unload(defltprov);
OSSL_PROVIDER_unload(fipsprov);
/* Not normally needed, but we would like to test that