mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2026-04-05 12:06:26 +02:00
There is no apparent direct dependency, and the indirect dependency through the RSA and legacy ECP modules is already encoded in the chain MBEDTLS_X509_USE_C -> MBEDTLS_PK_PARSE_C -> MBEDTLS_PK_C -> MBEDTLS_RSA_C || MBEDTLS_ECP_C -> MBEDTLS_BIGNUM_C which will be modified to MBEDTLS_X509_USE_C -> MBEDTLS_PK_PARSE_C -> MBEDTLS_PK_C -> MBEDTLS_RSA_C || MBEDTLS_ECP_C || MBEDTLS_USE_TINYCRYPT in which case MBEDTLS_BIGNUM_C is not needed for MBEDTLS_X509_USE_C if only MBEDTLS_USE_TINYCRYPT is set, but not MBEDTLS_RSA_C or MBEDTLS_ECP_C.