Searched refs:UINT4 (Results 1 – 2 of 2) sorted by relevance
| /mOS-networking-stack/samples/lighttpd-1.4.32/src/ |
| H A D | md5.c | 55 static void li_MD5Transform (UINT4 [4], const unsigned char [64]); 56 static void Encode (unsigned char *, UINT4 *, unsigned int); 91 (a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); \ 96 (a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); \ 101 (a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); \ 106 (a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); \ 137 if ((context->count[0] += ((UINT4)inputLen << 3)) in li_MD5_Update() 139 < ((UINT4)inputLen << 3)) in li_MD5_Update() 141 context->count[1] += ((UINT4)inputLen >> 29); in li_MD5_Update() 309 output[i] = ((UINT4)input[j]) | (((UINT4)input[j+1]) << 8) | in Decode() [all …]
|
| H A D | md5.h | 33 #define UINT4 uint32_t macro 39 UINT4 state[4]; /* state (ABCD) */ 40 UINT4 count[2]; /* number of bits, modulo 2^64 (lsb first) */
|