diff options
author | Rob Austein <sra@hactrn.net> | 2016-09-08 19:34:07 -0400 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2016-09-08 19:34:07 -0400 |
commit | 97ee7df6092551774b4c112a0349a25e76a684f3 (patch) | |
tree | 504cd5cde1f07df553cc06a26a89bda13e765e96 /ks_flash.c | |
parent | 1e1604b3bd25c3214b95a4a3280e9041a86a55a2 (diff) |
New keystore index internal API. Compiles, not yet integrated or tested.
Diffstat (limited to 'ks_flash.c')
-rw-r--r-- | ks_flash.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -519,8 +519,8 @@ const hal_ks_driver_t hal_ks_token_driver[1] = {{ * because it's the flash we've got. */ -hal_error_t hal_ks_get_pin(const hal_user_t user, - const hal_ks_pin_t **pin) +hal_error_t hal_get_pin(const hal_user_t user, + const hal_ks_pin_t **pin) { if (pin == NULL) return HAL_ERROR_BAD_ARGUMENTS; @@ -560,8 +560,8 @@ hal_error_t hal_ks_get_pin(const hal_user_t user, return LIBHAL_OK; } -hal_error_t hal_ks_set_pin(const hal_user_t user, - const hal_ks_pin_t * const pin) +hal_error_t hal_set_pin(const hal_user_t user, + const hal_ks_pin_t * const pin) { uint32_t active_sector_offset; |