Searched defs:inputLen (Results 1 - 1 of 1) sorted by relevance

/ast/src/lib/libsum/
H A Dsum-md5.c269 md5_block(Sum_t* p, const void* s, size_t inputLen) argument
281 if ((context->count[0] += ((UINT4)inputLen << 3)) < ((UINT4)inputLen << 3))
283 context->count[1] += ((UINT4)inputLen >> 29);
287 if (inputLen >= partLen)
291 for (i = partLen; i + 63 < inputLen; i += 64)
299 memcpy(&context->buffer[index], &input[i], inputLen - i);

Completed in 9 milliseconds