diff options
author | Tomas Paukrt <tomaspaukrt@email.cz> | 2024-08-27 19:38:09 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-08-30 13:57:05 -0600 |
commit | ccda0ba4614be9f03328123308da891940d5f5cd (patch) | |
tree | c287c2ef6017304ba6344336c053009b5c81e6a6 | |
parent | be222ac029c31b38ffdfdc135ced8b5a40b8216b (diff) |
lib: crypto: fix ASYMMETRIC_KEY_TYPE dependency
Fix the dependency to avoid a warning if RSA_VERIFY_WITH_PKEY is enabled.
Fixes: b7463f198da6 ("Make ASYMMETRIC_KEY_TYPE depend on FIT_SIGNATURE")
Signed-off-by: Tomas Paukrt <tomaspaukrt@email.cz>
-rw-r--r-- | lib/crypto/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/crypto/Kconfig b/lib/crypto/Kconfig index 6e0656ad1c5..742f6d9d4ed 100644 --- a/lib/crypto/Kconfig +++ b/lib/crypto/Kconfig @@ -1,6 +1,6 @@ menuconfig ASYMMETRIC_KEY_TYPE bool "Asymmetric (public-key cryptographic) key Support" - depends on FIT_SIGNATURE + depends on FIT_SIGNATURE || RSA_VERIFY_WITH_PKEY help This option provides support for a key type that holds the data for the asymmetric keys used for public key cryptographic operations such |