pub unsafe extern "C" fn KangarooTwelve_Update(
    ktInstance: *mut KangarooTwelve_Instance,
    input: *const c_uchar,
    inputByteLen: usize
) -> c_int
Expand description

Function to give input data to be absorbed. @param ktInstance Pointer to the instance initialized by KangarooTwelve_Initialize(). @param input Pointer to the input message data (M). @param inputByteLen The number of bytes provided in the input message data. @return 0 if successful, 1 otherwise.