pub unsafe extern "C" fn mbedtls_ecp_point_read_string(
    P: *mut mbedtls_ecp_point,
    radix: i32,
    x: *const i8,
    y: *const i8
) -> i32
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.