pub unsafe extern "C" fn TupleHash128_Update(
    TupleHashInstance: *mut TupleHash_Instance,
    tuple: *const TupleElement,
    numberOfElements: usize
) -> c_int
Expand description

Function to give input data to be absorbed. @param TupleHashInstance Pointer to the hash instance initialized by TupleHash128_Initialize(). @param tuple Pointer to an array of tuple elements (X). @param numberOfElements The number of tuple elements provided in the input data. @return 0 if successful, 1 otherwise.