UINT4
(a) += G ((b), (c), (d)) + (x) + (UINT4)0x5a827999; \
(a) += H ((b), (c), (d)) + (x) + (UINT4)0x6ed9eba1; \
if ((context->count[0] += ((UINT4)inputLen << 3))
< ((UINT4)inputLen << 3))
context->count[1] += ((UINT4)inputLen >> 29);
MD4Transform (UINT4 state[4], const unsigned char block[64])
UINT4 a = state[0], b = state[1], c = state[2], d = state[3], x[16];
Encode(unsigned char *output, UINT4 *input, unsigned int len)
Decode(UINT4 *output, const unsigned char *input, unsigned int len)
output[i] = ((UINT4)input[j]) | (((UINT4)input[j+1]) << 8) |
(((UINT4)input[j+2]) << 16) | (((UINT4)input[j+3]) << 24);
static void MD4Transform(UINT4 [4], const unsigned char [64]);
static void Encode(unsigned char *, UINT4 *, unsigned int);
static void Decode(UINT4 *, const unsigned char *, unsigned int);
Decode (UINT4 *output,
output[i] = ((UINT4)input[j]) | (((UINT4)input[j+1]) << 8) |
(((UINT4)input[j+2]) << 16) | (((UINT4)input[j+3]) << 24);
(a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); \
(a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); \
(a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); \
(a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); \
if ((context->count[0] += ((UINT4)inputLen << 3))
< ((UINT4)inputLen << 3))
context->count[1] += ((UINT4)inputLen >> 29);
MD5Transform(UINT4 state[4], const unsigned char block[64])
UINT4 a = state[0], b = state[1], c = state[2], d = state[3], x[16];
static void MD5Transform(UINT4 [4], const unsigned char [64]);
static void Encode(unsigned char *, UINT4 *, unsigned int);
static void Decode(UINT4 *, const unsigned char *, unsigned int);
UINT4 *input,