md4: replace bcopy usage with memcpy

This commit is contained in:
Yang Tse 2010-08-03 12:00:32 +02:00
parent 52beeb2c9f
commit 45456135d5

View File

@ -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. */