pub unsafe extern "C" fn esp_md5_update(
    ctx: *mut mbedtls_md5_context,
    input: *const c_uchar,
    ilen: usize
) -> c_int
Expand description

\brief MD5 process buffer

\param ctx MD5 context \param input buffer holding the data \param ilen length of the input data

\return 0 if successful

\warning MD5 is considered a weak message digest and its use constitutes a security risk. We recommend considering stronger message digests instead.