summaryrefslogtreecommitdiff
path: root/boot
diff options
context:
space:
mode:
authorQuentin Schulz <[email protected]>2025-10-31 18:08:23 +0100
committerTom Rini <[email protected]>2025-11-11 14:53:25 -0600
commit360dd89b361dde2a0bbad65763538e1eea7d3c94 (patch)
treeec9e2a1c54b887b1ccb013bf6132aab844576b66 /boot
parent973019000c2734ae560e5f4f5a58c9cdf85cffbb (diff)
rsa: rename FIT_RSASSA_PSS to RSASSA_PSS and move symbols under lib/rsa
This renames FIT_RSASSA_PSS symbols to drop the FIT_ prefix to avoid potential confusion since there's nothing FIT specific to those symbols. It also isn't really related to booting, so boot/Kconfig is an odd place for them to live. Since they make sense only in relation with RSA, simply move them to lib/rsa where it makes more sense for them to reside. Signed-off-by: Quentin Schulz <[email protected]>
Diffstat (limited to 'boot')
-rw-r--r--boot/Kconfig14
1 files changed, 0 insertions, 14 deletions
diff --git a/boot/Kconfig b/boot/Kconfig
index a37d08eff1d..708a18fd0ad 100644
--- a/boot/Kconfig
+++ b/boot/Kconfig
@@ -116,13 +116,6 @@ config FIT_SIGNATURE_MAX_SIZE
device memory. Assure this size does not extend past expected storage
space.
-config FIT_RSASSA_PSS
- bool "Support rsassa-pss signature scheme"
- depends on RSA_VERIFY
- help
- Enable this to support the pss padding algorithm as described
- in the rfc8017 (https://tools.ietf.org/html/rfc8017).
-
config FIT_CIPHER
bool "Enable ciphering data in a FIT uImages"
depends on DM
@@ -212,13 +205,6 @@ config SPL_FIT_SIGNATURE_MAX_SIZE
device memory. Assure this size does not extend past expected storage
space.
-config SPL_FIT_RSASSA_PSS
- bool "Support rsassa-pss signature scheme in SPL"
- depends on SPL_RSA_VERIFY
- help
- Enable this to support the pss padding algorithm as described
- in the rfc8017 (https://tools.ietf.org/html/rfc8017) in SPL.
-
config SPL_LOAD_FIT
bool "Enable SPL loading U-Boot as a FIT (basic fitImage features)"
depends on SPL