summaryrefslogtreecommitdiffstats
path: root/cpukit/libmd/md4.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libmd/md4.c')
-rw-r--r--cpukit/libmd/md4.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/cpukit/libmd/md4.c b/cpukit/libmd/md4.c
index 9d3b9d0a80..4060cce4f7 100644
--- a/cpukit/libmd/md4.c
+++ b/cpukit/libmd/md4.c
@@ -121,9 +121,9 @@ MD4_CTX *MDp;
** This routine is not user-callable.
*/
static void
-MDblock(MDp,Xb)
-MD4_CTX *MDp;
-unsigned char *Xb;
+MDblock(
+ MD4_CTX *MDp,
+ unsigned char *Xb)
{
register uint32_t tmp, A, B, C, D;
uint32_t X[16];
@@ -208,10 +208,10 @@ unsigned char *Xb;
** if desired.
*/
void
-MD4Update(MDp,X,count)
-MD4_CTX *MDp;
-unsigned char *X;
-unsigned int count;
+MD4Update(
+ MD4_CTX *MDp,
+ unsigned char *X,
+ unsigned int count )
{
unsigned int i, tmp, bit, byte, mask;
unsigned char XX[64];
@@ -278,9 +278,9 @@ unsigned int count;
** Finish up MD4 computation and return message digest.
*/
void
-MD4Final(buf, MD)
-unsigned char *buf;
-MD4_CTX *MD;
+MD4Final(
+ unsigned char *buf,
+ MD4_CTX *MD)
{
int i, j;
unsigned int w;