D | sha1.c | 296 sha1_uint32 d = ctx->D; in sha1_process_block() local 328 R( a, b, c, d, e, F1, K1, x[ 0] ); in sha1_process_block() 329 R( e, a, b, c, d, F1, K1, x[ 1] ); in sha1_process_block() 330 R( d, e, a, b, c, F1, K1, x[ 2] ); in sha1_process_block() 331 R( c, d, e, a, b, F1, K1, x[ 3] ); in sha1_process_block() 332 R( b, c, d, e, a, F1, K1, x[ 4] ); in sha1_process_block() 333 R( a, b, c, d, e, F1, K1, x[ 5] ); in sha1_process_block() 334 R( e, a, b, c, d, F1, K1, x[ 6] ); in sha1_process_block() 335 R( d, e, a, b, c, F1, K1, x[ 7] ); in sha1_process_block() 336 R( c, d, e, a, b, F1, K1, x[ 8] ); in sha1_process_block() [all …]
|