Home
last modified time | relevance | path

Searched refs:t (Results 1 – 2 of 2) sorted by relevance

/libcrypt/
A Dsha256.c123 for (unsigned int t = 0; t < 16; ++t) in sha256_process_block() local
125 W[t] = SWAP (*words); in sha256_process_block()
128 for (unsigned int t = 16; t < 64; ++t) in sha256_process_block() local
129 W[t] = _R1 (W[t - 2]) + W[t - 7] + _R0 (W[t - 15]) + W[t - 16]; in sha256_process_block()
132 for (unsigned int t = 0; t < 64; ++t) in sha256_process_block() local
134 uint32_t T1 = h + _S1 (e) + _Ch (e, f, g) + K[t] + W[t]; in sha256_process_block()
A Dsha512.c154 for (unsigned int t = 0; t < 16; ++t) in sha512_process_block() local
156 W[t] = SWAP (*words); in sha512_process_block()
159 for (unsigned int t = 16; t < 80; ++t) in sha512_process_block() local
160 W[t] = _R1 (W[t - 2]) + W[t - 7] + _R0 (W[t - 15]) + W[t - 16]; in sha512_process_block()
163 for (unsigned int t = 0; t < 80; ++t) in sha512_process_block() local
165 uint64_t T1 = h + _S1 (e) + _Ch (e, f, g) + K[t] + W[t]; in sha512_process_block()

Completed in 7 milliseconds