Function esp_idf_sys::mbedtls_ecp_point_read_string
source ยท pub unsafe extern "C" fn mbedtls_ecp_point_read_string(
P: *mut mbedtls_ecp_point,
radix: c_int,
x: *const c_char,
y: *const c_char,
) -> c_int
Expand description
\brief This function imports a non-zero point from two ASCII strings.
\param P The destination point. This must be initialized. \param radix The numeric base of the input. \param x The first affine coordinate, as a null-terminated string. \param y The second affine coordinate, as a null-terminated string.
\return \c 0 on success. \return An \c MBEDTLS_ERR_MPI_XXX error code on failure.