Home
last modified time | relevance | path

Searched refs:inputLen (Results 1 – 1 of 1) sorted by relevance

/busybox-1.35.0/libbb/
Dhash_md5prime.c407 void FAST_FUNC md5_hash(const void *buffer, size_t inputLen, md5_ctx_t *context) in md5_hash() argument
416 context->count[0] += (inputLen << 3); in md5_hash()
417 if (context->count[0] < (inputLen << 3)) in md5_hash()
419 context->count[1] += (inputLen >> 29); in md5_hash()
424 if (inputLen >= partLen) { in md5_hash()
427 for (i = partLen; i + 63 < inputLen; i += 64) in md5_hash()
433 memcpy(&context->buffer[idx], &input[i], inputLen - i); in md5_hash()