Function xkcp_sys::ParallelHash256_Update
source · pub unsafe extern "C" fn ParallelHash256_Update(
ParallelHashInstance: *mut ParallelHash_Instance,
input: *const BitSequence,
inputBitLen: BitLength
) -> c_int
Expand description
Function to give input data to be absorbed. @param ParallelHashInstance Pointer to the hash instance initialized by ParallelHash256_Initialize(). @param input Pointer to the input data (X). @param inputBitLen The number of input bits provided in the input data. Only full bytes are supported, length must be a multiple of 8. @return 0 if successful, 1 otherwise.