Skip to content
Snippets Groups Projects
Commit 45456135 authored by Yang Tse's avatar Yang Tse
Browse files

md4: replace bcopy usage with memcpy

parent 52beeb2c
No related branches found
No related tags found
No related merge requests found
......@@ -122,7 +122,7 @@ static void MD4Update(MD4_CTX *context, const unsigned char *input,
/* Transform as many times as possible.
*/
if (inputLen >= partLen) {
bcopy(input, &context->buffer[bufindex], partLen);
memcpy((void *)&context->buffer[bufindex], (void *)input, partLen);
MD4Transform (context->state, context->buffer);
for (i = partLen; i + 63 < inputLen; i += 64)
......@@ -134,7 +134,7 @@ static void MD4Update(MD4_CTX *context, const unsigned char *input,
i = 0;
/* Buffer remaining input */
bcopy(&input[i], &context->buffer[bufindex], inputLen-i);
memcpy((void *)&context->buffer[bufindex], (void *)&input[i], inputLen-i);
}
/* MD4 padding. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment