Searched refs:W (Results 1 – 2 of 2) sorted by relevance
100 uint32_t W[64]; in sha256_process_block() local125 W[t] = SWAP (*words); in sha256_process_block()129 W[t] = _R1 (W[t - 2]) + W[t - 7] + _R0 (W[t - 15]) + W[t - 16]; in sha256_process_block()134 uint32_t T1 = h + _S1 (e) + _Ch (e, f, g) + K[t] + W[t]; in sha256_process_block()
131 uint64_t W[80]; in sha512_process_block() local156 W[t] = SWAP (*words); in sha512_process_block()160 W[t] = _R1 (W[t - 2]) + W[t - 7] + _R0 (W[t - 15]) + W[t - 16]; in sha512_process_block()165 uint64_t T1 = h + _S1 (e) + _Ch (e, f, g) + K[t] + W[t]; in sha512_process_block()
Completed in 5 milliseconds