Lines Matching refs:hash
43 u64 hash[WP512_DIGEST_SIZE/8]; member
793 state[0] = block[0] ^ (K[0] = wctx->hash[0]); in wp512_process_buffer()
794 state[1] = block[1] ^ (K[1] = wctx->hash[1]); in wp512_process_buffer()
795 state[2] = block[2] ^ (K[2] = wctx->hash[2]); in wp512_process_buffer()
796 state[3] = block[3] ^ (K[3] = wctx->hash[3]); in wp512_process_buffer()
797 state[4] = block[4] ^ (K[4] = wctx->hash[4]); in wp512_process_buffer()
798 state[5] = block[5] ^ (K[5] = wctx->hash[5]); in wp512_process_buffer()
799 state[6] = block[6] ^ (K[6] = wctx->hash[6]); in wp512_process_buffer()
800 state[7] = block[7] ^ (K[7] = wctx->hash[7]); in wp512_process_buffer()
978 wctx->hash[0] ^= state[0] ^ block[0]; in wp512_process_buffer()
979 wctx->hash[1] ^= state[1] ^ block[1]; in wp512_process_buffer()
980 wctx->hash[2] ^= state[2] ^ block[2]; in wp512_process_buffer()
981 wctx->hash[3] ^= state[3] ^ block[3]; in wp512_process_buffer()
982 wctx->hash[4] ^= state[4] ^ block[4]; in wp512_process_buffer()
983 wctx->hash[5] ^= state[5] ^ block[5]; in wp512_process_buffer()
984 wctx->hash[6] ^= state[6] ^ block[6]; in wp512_process_buffer()
985 wctx->hash[7] ^= state[7] ^ block[7]; in wp512_process_buffer()
997 wctx->hash[i] = 0L; in wp512_init()
1093 digest[i] = cpu_to_be64(wctx->hash[i]); in wp512_final()