aboutsummaryrefslogtreecommitdiff
path: root/ks_flash.c
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2016-09-08 19:34:07 -0400
committerRob Austein <sra@hactrn.net>2016-09-08 19:34:07 -0400
commit97ee7df6092551774b4c112a0349a25e76a684f3 (patch)
tree504cd5cde1f07df553cc06a26a89bda13e765e96 /ks_flash.c
parent1e1604b3bd25c3214b95a4a3280e9041a86a55a2 (diff)
New keystore index internal API. Compiles, not yet integrated or tested.
Diffstat (limited to 'ks_flash.c')
-rw-r--r--ks_flash.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ks_flash.c b/ks_flash.c
index 5d0baaf..c3d12aa 100644
--- a/ks_flash.c
+++ b/ks_flash.c
@@ -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;