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

/osnet-11/usr/src/lib/libsum/common/
H A Dsum-md5.c288 md5_block(Sum_t* p, const void* s, size_t inputLen) argument
300 if ((context->count[0] += ((UINT4)inputLen << 3)) < ((UINT4)inputLen << 3))
302 context->count[1] += ((UINT4)inputLen >> 29);
306 if (inputLen >= partLen)
310 for (i = partLen; i + 63 < inputLen; i += 64)
318 memcpy(&context->buffer[index], &input[i], inputLen - i);

Completed in 39 milliseconds