Lines Matching refs:sha224_state

34 	a = ctx->sha224_state[0];  in sha224_process()
35 b = ctx->sha224_state[1]; in sha224_process()
36 c = ctx->sha224_state[2]; in sha224_process()
37 d = ctx->sha224_state[3]; in sha224_process()
38 e = ctx->sha224_state[4]; in sha224_process()
39 f = ctx->sha224_state[5]; in sha224_process()
40 g = ctx->sha224_state[6]; in sha224_process()
41 h = ctx->sha224_state[7]; in sha224_process()
54 ctx->sha224_state[0] += a; in sha224_process()
55 ctx->sha224_state[1] += b; in sha224_process()
56 ctx->sha224_state[2] += c; in sha224_process()
57 ctx->sha224_state[3] += d; in sha224_process()
58 ctx->sha224_state[4] += e; in sha224_process()
59 ctx->sha224_state[5] += f; in sha224_process()
60 ctx->sha224_state[6] += g; in sha224_process()
61 ctx->sha224_state[7] += h; in sha224_process()
77 ctx->sha224_state[0] = 0xC1059ED8; in sha224_init()
78 ctx->sha224_state[1] = 0x367CD507; in sha224_init()
79 ctx->sha224_state[2] = 0x3070DD17; in sha224_init()
80 ctx->sha224_state[3] = 0xF70E5939; in sha224_init()
81 ctx->sha224_state[4] = 0xFFC00B31; in sha224_init()
82 ctx->sha224_state[5] = 0x68581511; in sha224_init()
83 ctx->sha224_state[6] = 0x64F98FA7; in sha224_init()
84 ctx->sha224_state[7] = 0xBEFA4FA4; in sha224_init()
183 PUT_UINT32_BE(ctx->sha224_state[0], output, 0); in sha224_final()
184 PUT_UINT32_BE(ctx->sha224_state[1], output, 4); in sha224_final()
185 PUT_UINT32_BE(ctx->sha224_state[2], output, 8); in sha224_final()
186 PUT_UINT32_BE(ctx->sha224_state[3], output, 12); in sha224_final()
187 PUT_UINT32_BE(ctx->sha224_state[4], output, 16); in sha224_final()
188 PUT_UINT32_BE(ctx->sha224_state[5], output, 20); in sha224_final()
189 PUT_UINT32_BE(ctx->sha224_state[6], output, 24); in sha224_final()