[Cryptech-Commits] [sw/stm32] 02/02: change hal_aes_use_keywrap_core
git at cryptech.is
git at cryptech.is
Wed Mar 11 00:11:46 UTC 2020
This is an automated email from the git hooks/post-receive script.
paul at psgd.org pushed a commit to branch master
in repository sw/stm32.
commit f09f1b8f4494e90ee672e92f3357229bdfb7d0ae
Author: Paul Selkirk <paul at psgd.org>
AuthorDate: Tue Mar 10 19:35:52 2020 -0400
change hal_aes_use_keywrap_core
---
projects/hsm/mgmt-misc.c | 16 +++++++---------
1 file changed, 7 insertions(+), 9 deletions(-)
diff --git a/projects/hsm/mgmt-misc.c b/projects/hsm/mgmt-misc.c
index 116197d..e732484 100644
--- a/projects/hsm/mgmt-misc.c
+++ b/projects/hsm/mgmt-misc.c
@@ -249,14 +249,12 @@ static int cmd_keywrap_core(struct cli_def *cli, const char *command, char *argv
return CLI_ERROR;
}
- int ret = hal_aes_use_keywrap_core(onoff);
- if (ret)
- cli_print(cli, "keywrap core enabled");
- else if (onoff)
- cli_print(cli, "keywrap core not found");
- else
- cli_print(cli, "keywrap core disabled");
- return CLI_OK;
+ hal_error_t err;
+ if ((err = hal_aes_use_keywrap_core(onoff)) == LIBHAL_OK)
+ return CLI_OK;
+
+ cli_print(cli, hal_error_string(err));
+ return CLI_ERROR;
}
void configure_cli_misc(struct cli_def *cli)
@@ -264,7 +262,7 @@ void configure_cli_misc(struct cli_def *cli)
struct cli_command *c_keywrap = cli_register_command(cli, NULL, "keywrap", NULL, 0, 0, NULL);
/* keywrap core */
- cli_register_command(cli, c_keywrap, "core", cmd_keywrap_core, 0, 0, "Toggle use of the keywrap core");
+ cli_register_command(cli, c_keywrap, "core", cmd_keywrap_core, 0, 0, "Set use of the keywrap core");
#ifdef DO_PROFILING
struct cli_command *c_profile = cli_register_command(cli, NULL, "profile", NULL, 0, 0, NULL);
More information about the Commits
mailing list