pub unsafe extern "C" fn mbedtls_asn1_find_named_data(
    list: *const mbedtls_asn1_named_data,
    oid: *const c_char,
    len: usize
) -> *const mbedtls_asn1_named_data
Expand description

\brief Find a specific named_data entry in a sequence or list based on the OID.

\param list The list to seek through \param oid The OID to look for \param len Size of the OID

\return NULL if not found, or a pointer to the existing entry.