Lines Matching defs:UINT4
38 typedef uint32_t UINT4;
57 static void MD4Transform PROTO_LIST ((UINT4 [4], const unsigned char [64]));
59 ((unsigned char *, UINT4 *, unsigned int));
61 ((UINT4 *, const unsigned char *, unsigned int));
86 (a) += G ((b), (c), (d)) + (x) + (UINT4)0x5a827999; \
90 (a) += H ((b), (c), (d)) + (x) + (UINT4)0x6ed9eba1; \
122 if ((context->count[0] += ((UINT4)inputLen << 3))
123 < ((UINT4)inputLen << 3))
125 context->count[1] += ((UINT4)inputLen >> 29);
186 MD4Transform(UINT4 state[4], const unsigned char block[64])
188 UINT4 a = state[0], b = state[1], c = state[2], d = state[3], x[16];
256 /* Encodes input (UINT4) into output (unsigned char). Assumes len is
260 Encode(unsigned char *output, UINT4 *input, unsigned int len)
272 /* Decodes input (unsigned char) into output (UINT4). Assumes len is
276 Decode(UINT4 *output, const unsigned char *input, unsigned int len)
281 output[i] = ((UINT4)input[j]) | (((UINT4)input[j+1]) << 8) |
282 (((UINT4)input[j+2]) << 16) | (((UINT4)input[j+3]) << 24);