pub unsafe extern "C" fn Hacl_Streaming_SHA2_update_512(
    p: *mut Hacl_Streaming_MD_state_64,
    input: *mut u8,
    input_len: u32
) -> Hacl_Streaming_Types_error_code
Expand description

Feed an arbitrary amount of data into the hash. This function returns 0 for success, or 1 if the combined length of all of the data passed to update_512 (since the last call to init_512) exceeds 2^125-1 bytes.

This function is identical to the update function for SHA2_384.