aboutsummaryrefslogtreecommitdiff
path: root/projects/hsm
diff options
context:
space:
mode:
Diffstat (limited to 'projects/hsm')
-rw-r--r--projects/hsm/mgmt-misc.c16
1 files 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);
ref='#n142'>142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187