summaryrefslogtreecommitdiffstats
path: root/providers/implementations/serializers/serializer_common.c
diff options
context:
space:
mode:
Diffstat (limited to 'providers/implementations/serializers/serializer_common.c')
-rw-r--r--providers/implementations/serializers/serializer_common.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/providers/implementations/serializers/serializer_common.c b/providers/implementations/serializers/serializer_common.c
index 75c1ddc245..7bf0ce941a 100644
--- a/providers/implementations/serializers/serializer_common.c
+++ b/providers/implementations/serializers/serializer_common.c
@@ -114,32 +114,32 @@ static X509_PUBKEY *ossl_prov_pubkey_from_obj(const void *obj, int obj_nid,
return xpk;
}
-OSSL_OP_keymgmt_new_fn *ossl_prov_get_keymgmt_new(const OSSL_DISPATCH *fns)
+OSSL_FUNC_keymgmt_new_fn *ossl_prov_get_keymgmt_new(const OSSL_DISPATCH *fns)
{
/* Pilfer the keymgmt dispatch table */
for (; fns->function_id != 0; fns++)
if (fns->function_id == OSSL_FUNC_KEYMGMT_NEW)
- return OSSL_get_OP_keymgmt_new(fns);
+ return OSSL_FUNC_keymgmt_new(fns);
return NULL;
}
-OSSL_OP_keymgmt_free_fn *ossl_prov_get_keymgmt_free(const OSSL_DISPATCH *fns)
+OSSL_FUNC_keymgmt_free_fn *ossl_prov_get_keymgmt_free(const OSSL_DISPATCH *fns)
{
/* Pilfer the keymgmt dispatch table */
for (; fns->function_id != 0; fns++)
if (fns->function_id == OSSL_FUNC_KEYMGMT_FREE)
- return OSSL_get_OP_keymgmt_free(fns);
+ return OSSL_FUNC_keymgmt_free(fns);
return NULL;
}
-OSSL_OP_keymgmt_import_fn *ossl_prov_get_keymgmt_import(const OSSL_DISPATCH *fns)
+OSSL_FUNC_keymgmt_import_fn *ossl_prov_get_keymgmt_import(const OSSL_DISPATCH *fns)
{
/* Pilfer the keymgmt dispatch table */
for (; fns->function_id != 0; fns++)
if (fns->function_id == OSSL_FUNC_KEYMGMT_IMPORT)
- return OSSL_get_OP_keymgmt_import(fns);
+ return OSSL_FUNC_keymgmt_import(fns);
return NULL;
}