diff options
author | Vesa Jääskeläinen <vesa.jaaskelainen@vaisala.com> | 2019-06-16 20:53:38 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-07-18 11:31:23 -0400 |
commit | 5b123e010954d8f6ef24dd0cb1a8cbe1d7d53851 (patch) | |
tree | cca21fad52e79da0f23dcad1e0866a3b7ad03a39 /tools/mkimage.c | |
parent | 0e80dda32c8d724c2a98dbbfb2f1e59762788f15 (diff) |
lib: rsa: add support to other openssl engine types than pkcs11
There are multiple other openssl engines used by HSMs that can be used to
sign FIT images instead of forcing users to use pkcs11 type of service.
Relax engine selection so that other openssl engines can be specified and
use generic key id definition formula.
Signed-off-by: Vesa Jääskeläinen <vesa.jaaskelainen@vaisala.com>
Cc: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'tools/mkimage.c')
-rw-r--r-- | tools/mkimage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mkimage.c b/tools/mkimage.c index d1e1a6743d..4217188310 100644 --- a/tools/mkimage.c +++ b/tools/mkimage.c @@ -105,7 +105,7 @@ static void usage(const char *msg) " -F => re-sign existing FIT image\n" " -p => place external data at a static position\n" " -r => mark keys used as 'required' in dtb\n" - " -N => engine to use for signing (pkcs11)\n"); + " -N => openssl engine to use for signing\n"); #else fprintf(stderr, "Signing / verified boot not supported (CONFIG_FIT_SIGNATURE undefined)\n"); |