From 13718c804fd2b20a50cd0fe318390c3b2d24de32 Mon Sep 17 00:00:00 2001 From: Rob Austein Date: Fri, 9 Sep 2016 15:34:32 -0400 Subject: Missed a few instances of type-based key naming in keystore drivers. --- ks_flash.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ks_flash.c') diff --git a/ks_flash.c b/ks_flash.c index 9393100..a53edcf 100644 --- a/ks_flash.c +++ b/ks_flash.c @@ -306,7 +306,7 @@ static hal_error_t ks_fetch(hal_ks_t *ks, hal_pkey_slot_t *slot, uint8_t *der, size_t *der_len, const size_t der_max) { - if (ks != &db.ks || slot == NULL || !acceptable_key_type(slot->type)) + if (ks != &db.ks || slot == NULL) return HAL_ERROR_BAD_ARGUMENTS; const hal_ks_key_t * const k = find(&slot->name); @@ -479,7 +479,7 @@ static hal_error_t ks_store(hal_ks_t *ks, static hal_error_t ks_delete(hal_ks_t *ks, const hal_pkey_slot_t * const slot) { - if (ks != &db.ks || slot == NULL || !acceptable_key_type(slot->type)) + if (ks != &db.ks || slot == NULL) return HAL_ERROR_BAD_ARGUMENTS; hal_ks_key_t *k = find(&slot->name); -- cgit v1.2.3