mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-06-13 15:03:58 +03:00
lib: rsa: fix compilation error without openssl
The symbol TOOLS_IMAGE_PRE_LOAD doesn't depend on TOOLS_LIBCRYPTO.
If we choose to build tools without openssl, rsa_verify_openssl()
will attempt to call the unavailable openssl library functions.
Fixes: 942c8c8e66 ("rsa: Add rsa_verify_openssl() to use openssl for host builds")
Signed-off-by: Shiji Yang <yangshiji66@outlook.com>
This commit is contained in:
@@ -19,7 +19,7 @@
|
||||
#include <openssl/evp.h>
|
||||
#endif
|
||||
|
||||
#if CONFIG_IS_ENABLED(IMAGE_PRE_LOAD)
|
||||
#if CONFIG_IS_ENABLED(IMAGE_PRE_LOAD) && CONFIG_IS_ENABLED(LIBCRYPTO)
|
||||
#include <openssl/rsa.h>
|
||||
#include <openssl/err.h>
|
||||
#endif
|
||||
@@ -1416,7 +1416,7 @@ int fit_check_sign(const void *fit, const void *key,
|
||||
}
|
||||
#endif
|
||||
|
||||
#if CONFIG_IS_ENABLED(IMAGE_PRE_LOAD)
|
||||
#if CONFIG_IS_ENABLED(IMAGE_PRE_LOAD) && CONFIG_IS_ENABLED(LIBCRYPTO)
|
||||
/**
|
||||
* rsa_verify_openssl() - Verify a signature against some data with openssl API
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user