Lines Matching defs:input
44 unsigned char buffer[64]; /* input buffer */
62 * encode input into output
67 md5_encode(register unsigned char* output, register UINT4* input, unsigned int len)
74 output[j] = (unsigned char)(input[i] & 0xff);
75 output[j+1] = (unsigned char)((input[i] >> 8) & 0xff);
76 output[j+2] = (unsigned char)((input[i] >> 16) & 0xff);
77 output[j+3] = (unsigned char)((input[i] >> 24) & 0xff);
82 * decode input into output
87 md5_decode(register UINT4* output, register unsigned char* input, unsigned int len)
93 output[i] = ((UINT4)input[j]) |
94 (((UINT4)input[j+1]) << 8) |
95 (((UINT4)input[j+2]) << 16) |
96 (((UINT4)input[j+3]) << 24);
272 unsigned char* input = (unsigned char*)s;
289 memcpy(&context->buffer[index], input, partLen);
292 md5_transform(context->state, &input[i]);
298 /* buffer remaining input */
299 memcpy(&context->buffer[index], &input[i], inputLen - i);