mbedtls_x509_crt_parse_der() is only used within mbedTLS.
 
Symbols
loading (4/5)...
Files
mbedTLS
esp_crt_bundle
mbedtls
3rdparty
include
mbedtls
psa
library
port
ESP-IDF
FreeRTOS
cJSON
lwIP
SummarySyntaxArgumentsRelatedReferencesCall TreeData Use

Return value

\c 0 if successful. A negative error code on failure.

Notes

If #MBEDTLS_USE_PSA_CRYPTO is enabled, the PSA crypto subsystem must have been initialized by calling psa_crypto_init() before calling this function. This function makes an internal copy of the CRT buffer \p buf. In particular, \p buf may be destroyed or reused after this call returns. To avoid duplicating the CRT buffer (at the cost of stricter lifetime constraints), use mbedtls_x509_crt_parse_der_nocopy() instead.

References