From d6e9917d07ddb0a5f8218fecdcd8bda3a1104912 Mon Sep 17 00:00:00 2001 From: Rob Austein Date: Mon, 14 Nov 2016 15:15:46 -0500 Subject: hal_rpc_pkey_find() -> hal_rpc_pkey_open(). --- rpc_api.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rpc_api.c') diff --git a/rpc_api.c b/rpc_api.c index d908e8f..75172bf 100644 --- a/rpc_api.c +++ b/rpc_api.c @@ -227,7 +227,7 @@ hal_error_t hal_rpc_pkey_load(const hal_client_handle_t client, return hal_rpc_pkey_dispatch->load(client, session, pkey, type, curve, name, der, der_len, flags); } -hal_error_t hal_rpc_pkey_find(const hal_client_handle_t client, +hal_error_t hal_rpc_pkey_open(const hal_client_handle_t client, const hal_session_handle_t session, hal_pkey_handle_t *pkey, const hal_uuid_t * const name, @@ -235,7 +235,7 @@ hal_error_t hal_rpc_pkey_find(const hal_client_handle_t client, { if (pkey == NULL || name == NULL) return HAL_ERROR_BAD_ARGUMENTS; - return hal_rpc_pkey_dispatch->find(client, session, pkey, name, flags); + return hal_rpc_pkey_dispatch->open(client, session, pkey, name, flags); } hal_error_t hal_rpc_pkey_generate_rsa(const hal_client_handle_t client, -- cgit v1.2.3