diff options
| author | Raymond Mao <[email protected]> | 2024-10-03 14:50:29 -0700 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-10-14 17:58:44 -0600 |
| commit | f7586471e79e2c263cc687147cf47cb462518e0e (patch) | |
| tree | 6aae5988da86e915d4fd0cda7315cd1061fe8b1a /include | |
| parent | bfbf3ab6151ff22e2c6f90cf4cff92758b84e66a (diff) | |
lib/crypto: Adapt public_key header with MbedTLS
Previous patch has introduced MbedTLS porting layer for public key,
here to adjust the header and makefiles accordingly.
Signed-off-by: Raymond Mao <[email protected]>
Reviewed-by: Ilias Apalodimas <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/crypto/public_key.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/crypto/public_key.h b/include/crypto/public_key.h index 3ba90fcc348..25cfb68adce 100644 --- a/include/crypto/public_key.h +++ b/include/crypto/public_key.h @@ -12,6 +12,12 @@ #ifdef __UBOOT__ #include <linux/types.h> +#if CONFIG_IS_ENABLED(MBEDTLS_LIB_X509) +#include <library/common.h> +#include <mbedtls/pk.h> +#include <mbedtls/x509_crt.h> +#include <mbedtls/md.h> +#endif #else #include <linux/keyctl.h> #endif |
