Lines Matching refs:md4_state
42 A = ctx->md4_state[0]; in md4_process()
43 B = ctx->md4_state[1]; in md4_process()
44 C = ctx->md4_state[2]; in md4_process()
45 D = ctx->md4_state[3]; in md4_process()
84 ctx->md4_state[0] += A; in md4_process()
85 ctx->md4_state[1] += B; in md4_process()
86 ctx->md4_state[2] += C; in md4_process()
87 ctx->md4_state[3] += D; in md4_process()
106 ctx->md4_state[0] = 0x67452301; in md4_init()
107 ctx->md4_state[1] = 0xEFCDAB89; in md4_init()
108 ctx->md4_state[2] = 0x98BADCFE; in md4_init()
109 ctx->md4_state[3] = 0x10325476; in md4_init()
207 PUT_UINT32_LE(ctx->md4_state[0], output, 0); in md4_final()
208 PUT_UINT32_LE(ctx->md4_state[1], output, 4); in md4_final()
209 PUT_UINT32_LE(ctx->md4_state[2], output, 8); in md4_final()
210 PUT_UINT32_LE(ctx->md4_state[3], output, 12); in md4_final()