aboutsummaryrefslogtreecommitdiff
path: root/ks_token.c
diff options
context:
space:
mode:
authorPaul Selkirk <paul@psgd.org>2017-10-15 21:36:57 -0400
committerPaul Selkirk <paul@psgd.org>2017-10-15 21:36:57 -0400
commit12a3c63b75044b207dd7982ce3ed170231bd4467 (patch)
treee19ab0bb70b515ca19f0c5d2d286135d2e79ac55 /ks_token.c
parentec25ec271ef243aa043db69d091de2e2015bc3af (diff)
Correctly mark "unsecure" KEK as erased.
Diffstat (limited to 'ks_token.c')
-rw-r--r--ks_token.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ks_token.c b/ks_token.c
index a6cad0e..b96d279 100644
--- a/ks_token.c
+++ b/ks_token.c
@@ -640,7 +640,7 @@ hal_error_t hal_mkm_flash_erase(const size_t len)
hal_ks_pin_block_t new_data = block->pin;
- new_data.kek_set = FLASH_KEK_SET;
+ new_data.kek_set = FLASH_KEK_NOT_SET;
memset(new_data.kek, 0, len);
err = update_pin_block(b, block, &new_data);