diff options
author | Philippe Reynes <philippe.reynes@softathome.com> | 2018-11-14 13:51:01 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-12-03 10:44:10 -0500 |
commit | 061daa0b61f0fbeb214c566f3adb23da05545320 (patch) | |
tree | f16e131f6e8fd1a724fd70d6669c9011f28c23eb /Kconfig | |
parent | 20031567e12bb312bff95b70767f6275e20f0346 (diff) | |
download | u-boot-061daa0b61f0fbeb214c566f3adb23da05545320.tar.gz |
rsa: add support of padding pss
We add the support of the padding pss for rsa signature.
This new padding is often recommended instead of pkcs-1.5.
Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'Kconfig')
-rw-r--r-- | Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -290,6 +290,14 @@ config FIT_SIGNATURE_MAX_SIZE device memory. Assure this size does not extend past expected storage space. +config FIT_ENABLE_RSASSA_PSS_SUPPORT + bool "Support rsassa-pss signature scheme of FIT image contents" + depends on FIT_SIGNATURE + default n + help + Enable this to support the pss padding algorithm as described + in the rfc8017 (https://tools.ietf.org/html/rfc8017). + config FIT_VERBOSE bool "Show verbose messages when FIT images fail" help |