compute_sha256_u32_array
Computes the SHA-256 hash of the input array. input is an array of 32-bit words. use last_input_word when the number of bytes in the last input word is less than 4. last_input_num_bytes is the number of bytes in the last input word (must be less than 4). return the SHA-256 hash of the input array
+ last_input_word
as big endian.
Fully qualified path: core::sha256::compute_sha256_u32_array
pub fn compute_sha256_u32_array(
mut input: Array<u32>, last_input_word: u32, last_input_num_bytes: u32,
) -> [u32; 8]