Home
last modified time | relevance | path

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

/openbmc/ipmitool/src/plugins/lan/
H A Dmd5.h64 typedef unsigned int md5_word_t; /* 32-bit word */ typedef
68 md5_word_t count[2]; /* message length in bits, lsw first */
69 md5_word_t abcd[4]; /* digest buffer */
H A Dmd5.c64 #define T_MASK ((md5_word_t)~0)
134 md5_word_t in md5_process()
137 md5_word_t t; in md5_process()
140 md5_word_t X[16]; in md5_process()
143 md5_word_t xbuf[16]; in md5_process()
144 const md5_word_t *X; in md5_process()
166 X = (const md5_word_t *)data; in md5_process()
328 md5_word_t nbits = (md5_word_t)(nbytes << 3); in md5_append()