From 45456135d586e894bc749f9f48d3bc84855636c3 Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Tue, 3 Aug 2010 12:00:32 +0200 Subject: md4: replace bcopy usage with memcpy --- lib/md4.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/md4.c') diff --git a/lib/md4.c b/lib/md4.c index 700008375..0dfea88f6 100644 --- a/lib/md4.c +++ b/lib/md4.c @@ -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. */ -- cgit v1.2.3