Home
last modified time | relevance | path

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

/freebsd/crypto/libecc/src/examples/hash/
H A Dmd5.c50 A = ctx->md5_state[0]; in md5_process()
51 B = ctx->md5_state[1]; in md5_process()
52 C = ctx->md5_state[2]; in md5_process()
53 D = ctx->md5_state[3]; in md5_process()
85 ctx->md5_state[0] += A; in md5_process()
86 ctx->md5_state[1] += B; in md5_process()
87 ctx->md5_state[2] += C; in md5_process()
88 ctx->md5_state[3] += D; in md5_process()
107 ctx->md5_state[0] = 0x67452301; in md5_init()
108 ctx->md5_state[1] = 0xEFCDAB89; in md5_init()
[all …]
H A Dmd5.h107 u32 md5_state[MD5_STATE_SIZE]; member