aboutsummaryrefslogtreecommitdiff
path: root/rpc_hash.c
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2015-12-23 21:35:28 -0500
committerRob Austein <sra@hactrn.net>2015-12-23 21:35:28 -0500
commita1e4e4fe7331338ece1a6d3ba01862a35a22f4ae (patch)
treebfccf359539f1d98d314eea4e3043e9f379cc3c1 /rpc_hash.c
parent0fc5ab986329e48ac8de0fd8fa12455c1e6345af (diff)
RPC interface to TRNG and (incomplete) PIN code.
Diffstat (limited to 'rpc_hash.c')
-rw-r--r--rpc_hash.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/rpc_hash.c b/rpc_hash.c
index 86b8ae0..407e581 100644
--- a/rpc_hash.c
+++ b/rpc_hash.c
@@ -47,8 +47,8 @@
*/
typedef struct {
- hal_rpc_client_handle_t client_handle;
- hal_rpc_session_handle_t session_handle;
+ hal_client_handle_t client_handle;
+ hal_session_handle_t session_handle;
hal_rpc_hash_handle_t hash_handle;
union {
hal_hash_state_t *hash;
@@ -226,8 +226,8 @@ static hal_error_t get_algorithm(const hal_rpc_hash_handle_t handle, hal_digest_
return HAL_OK;
}
-static hal_error_t initialize(const hal_rpc_client_handle_t client,
- const hal_rpc_session_handle_t session,
+static hal_error_t initialize(const hal_client_handle_t client,
+ const hal_session_handle_t session,
hal_rpc_hash_handle_t *hash,
const hal_digest_algorithm_t alg,
const uint8_t * const key, const size_t key_len)