diff options
author | Paul Selkirk <paul@psgd.org> | 2019-12-02 15:38:58 -0500 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2019-12-02 15:38:58 -0500 |
commit | 4fd9d1186efed0de8e3ae1d1e2fa5a0e5c46c2fb (patch) | |
tree | 6ca093d7ca03ab8f179d23dc7fa9b001e377de65 /hal_internal.h | |
parent | 323bc8ade3eae73174961bbf604257a1b099fe55 (diff) |
After some thought, I'd rather make raw export/import a sub-function of
key export/import (kekek = none, kek_len = 0), rather than separate RPCs.
Diffstat (limited to 'hal_internal.h')
-rw-r--r-- | hal_internal.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/hal_internal.h b/hal_internal.h index 1885595..1297b98 100644 --- a/hal_internal.h +++ b/hal_internal.h @@ -380,16 +380,6 @@ typedef struct { const uint8_t * const kek, const size_t kek_len, const hal_key_flags_t flags); - hal_error_t (*export_raw)(const hal_pkey_handle_t pkey_handle, - uint8_t *der, size_t *der_len, const size_t der_max); - - hal_error_t (*import_raw)(const hal_client_handle_t client, - const hal_session_handle_t session, - hal_pkey_handle_t *pkey, - hal_uuid_t *name, - const uint8_t * const der, const size_t der_len, - const hal_key_flags_t flags); - } hal_rpc_pkey_dispatch_t; @@ -672,8 +662,6 @@ typedef enum { RPC_FUNC_PKEY_EXPORT, RPC_FUNC_PKEY_IMPORT, RPC_FUNC_PKEY_GENERATE_HASHSIG, - RPC_FUNC_PKEY_EXPORT_RAW, - RPC_FUNC_PKEY_IMPORT_RAW, } rpc_func_num_t; #define RPC_VERSION 0x01010200 /* 1.1.2.0 */ |