X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=pppd%2Fmd4.c;h=42a9b2e75d6ee09764e83e6fc99dc5f161e86ea5;hb=c4d488788a3ed8fba3e75c9ddd632d1f98e9ac77;hp=d943e8885f2d7872d579f92184103eaadc355793;hpb=74fc0589bb4ec8f9e37711067cdc58dd5447cde5;p=ppp.git diff --git a/pppd/md4.c b/pppd/md4.c index d943e88..42a9b2e 100644 --- a/pppd/md4.c +++ b/pppd/md4.c @@ -87,8 +87,7 @@ ** This is a user-callable routine. */ void -MD4Print(MDp) -MD4_CTX *MDp; +MD4Print(MD4_CTX *MDp) { int i,j; for (i=0;i<4;i++) @@ -101,8 +100,7 @@ MD4_CTX *MDp; ** This is a user-callable routine. */ void -MD4Init(MDp) -MD4_CTX *MDp; +MD4Init(MD4_CTX *MDp) { int i; MDp->buffer[0] = I0; @@ -120,9 +118,7 @@ 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 unsigned int tmp, A, B, C, D; unsigned int X[16]; @@ -206,10 +202,7 @@ 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]; @@ -277,9 +270,7 @@ 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;