pub unsafe extern "C" fn mbedtls_sha3_update(
    ctx: *mut mbedtls_sha3_context,
    input: *const u8,
    ilen: usize
) -> c_int
Expand description

\brief This function feeds an input buffer into an ongoing SHA-3 checksum calculation.

\param ctx The SHA-3 context. This must be initialized and have a hash operation started. \param input The buffer holding the data. This must be a readable buffer of length \p ilen Bytes. \param ilen The length of the input data in Bytes.

\return \c 0 on success. \return A negative error code on failure.