pub unsafe extern "C" fn mbedtls_mpi_read_string(
    X: *mut mbedtls_mpi,
    radix: c_int,
    s: *const c_char
) -> c_int
Expand description

\brief Import an MPI from an ASCII string.

\param X The destination MPI. This must point to an initialized MPI. \param radix The numeric base of the input string. \param s Null-terminated string buffer.

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