Searched refs:md5_byte_t (Results 1 - 3 of 3) sorted by relevance

/openwrt/tools/wrt350nv2-builder/src/
H A Dmd5.h63 typedef unsigned char md5_byte_t; /* 8-bit byte */ typedef
70 md5_byte_t buf[64]; /* accumulate block */
82 void md5_append(md5_state_t *pms, const md5_byte_t *data, int nbytes);
85 void md5_finish(md5_state_t *pms, md5_byte_t digest[16]);
H A Dmd5.c132 md5_process(md5_state_t *pms, const md5_byte_t *data /*[64]*/)
156 if (*((const md5_byte_t *)&w)) /* dynamic little-endian */
164 if (!((data - (const md5_byte_t *)0) & 3)) {
183 const md5_byte_t *xp = data;
323 md5_append(md5_state_t *pms, const md5_byte_t *data, int nbytes)
325 const md5_byte_t *p = data;
361 md5_finish(md5_state_t *pms, md5_byte_t digest[16])
363 static const md5_byte_t pad[64] = {
369 md5_byte_t data[8];
374 data[i] = (md5_byte_t)(pm
[all...]
H A Dwrt350nv2-builder.c618 md5_byte_t digest[16];
644 md5_append(&state, (const md5_byte_t *)&img_hdr[i], 1);
664 md5_append(&state, (const md5_byte_t *)buffer, 1);
682 md5_append(&state, (const md5_byte_t *)img_eof, 1);
686 md5_append(&state, (const md5_byte_t *)"A^gU*<>?RFY@#DR&Z", 17);

Completed in 35 milliseconds