summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorShane Lontis <shane.lontis@oracle.com>2020-08-06 13:56:57 +1000
committerShane Lontis <shane.lontis@oracle.com>2020-08-09 17:34:52 +1000
commitdda4e259e51aeaf05a2417ef577accf778c9f6f6 (patch)
treebe68845d6f9091a3d9e56219de971bd1e9deeb96 /test
parent28ba642779ec5c320fc95515bce17bda5e531105 (diff)
Add some of the missing CMS API documentation
Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/11884)
Diffstat (limited to 'test')
-rw-r--r--test/evp_test.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/evp_test.c b/test/evp_test.c
index 30a0aa11ef..bff1ecb558 100644
--- a/test/evp_test.c
+++ b/test/evp_test.c
@@ -1183,7 +1183,7 @@ static int mac_test_run_pkey(EVP_TEST *t)
t->err = "INTERNAL_ERROR";
goto err;
}
- if (!EVP_DigestSignInit_ex(mctx, &pctx, mdname, NULL, key, libctx)) {
+ if (!EVP_DigestSignInit_with_libctx(mctx, &pctx, mdname, libctx, NULL, key)) {
t->err = "DIGESTSIGNINIT_ERROR";
goto err;
}
@@ -2899,13 +2899,13 @@ static int digestsigver_test_parse(EVP_TEST *t,
return 1;
}
if (mdata->is_verify) {
- if (!EVP_DigestVerifyInit_ex(mdata->ctx, &mdata->pctx,
- name, NULL, pkey, libctx))
+ if (!EVP_DigestVerifyInit_with_libctx(mdata->ctx, &mdata->pctx,
+ name, libctx, NULL, pkey))
t->err = "DIGESTVERIFYINIT_ERROR";
return 1;
}
- if (!EVP_DigestSignInit_ex(mdata->ctx, &mdata->pctx,
- name, NULL, pkey, libctx))
+ if (!EVP_DigestSignInit_with_libctx(mdata->ctx, &mdata->pctx,
+ name, libctx, NULL, pkey))
t->err = "DIGESTSIGNINIT_ERROR";
return 1;
}