Home | History | Annotate | Download | only in md

Lines Matching defs:UINT4

61 typedef uint32_t UINT4;
79 static void MD4Transform(UINT4 [4], const unsigned char [64]);
81 static void Encode(unsigned char *, UINT4 *, unsigned int);
82 static void Decode(UINT4 *, const unsigned char *, unsigned int);
112 (a) += G ((b), (c), (d)) + (x) + (UINT4)0x5a827999; \
117 (a) += H ((b), (c), (d)) + (x) + (UINT4)0x6ed9eba1; \
165 if ((context->count[0] += ((UINT4)inputLen << 3))
166 < ((UINT4)inputLen << 3))
168 context->count[1] += ((UINT4)inputLen >> 29);
224 MD4Transform (UINT4 state[4], const unsigned char block[64])
226 UINT4 a = state[0], b = state[1], c = state[2], d = state[3], x[16];
294 * Encodes input (UINT4) into output (unsigned char). Assumes len is
298 Encode(unsigned char *output, UINT4 *input, unsigned int len)
311 * Decodes input (unsigned char) into output (UINT4). Assumes len is
315 Decode(UINT4 *output, const unsigned char *input, unsigned int len)
320 output[i] = ((UINT4)input[j]) | (((UINT4)input[j+1]) << 8) |
321 (((UINT4)input[j+2]) << 16) | (((UINT4)input[j+3]) << 24);