Home
last modified time | relevance | path

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

/freebsd/crypto/libecc/src/examples/hash/
H A Dmd4.c42 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()
[all …]
H A Dmd4.h106 u32 md4_state[MD4_STATE_SIZE]; member