X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=pppd%2Fmd5.h;h=31f410dcf19c3911f38b7b3cd8266a7a867747bd;hb=509f04959ad891d7f981f035ed461d51bd1f74b0;hp=7492b2228e2bee024cfca3e5a73dc9567ef265bd;hpb=0dcd8b3af72b0f9fe572b2e7f2bc7c0fa02bbf5e;p=ppp.git diff --git a/pppd/md5.h b/pppd/md5.h index 7492b22..31f410d 100644 --- a/pppd/md5.h +++ b/pppd/md5.h @@ -36,11 +36,24 @@ ** documentation and/or software. ** *********************************************************************** */ +#ifndef PPP_MD5_H +#define PPP_MD5_H -#ifndef __MD5_INCLUDE__ +#include "pppdconf.h" + +#ifndef USE_MD5 +#include +#else /* typedef a 32-bit type */ +#ifdef _LP64 typedef unsigned int UINT4; +typedef int INT4; +#else +typedef unsigned long UINT4; +typedef long INT4; +#endif +#define _UINT4_T /* Data structure for MD5 (Message-Digest) computation */ typedef struct { @@ -50,9 +63,9 @@ typedef struct { unsigned char digest[16]; /* actual digest after MD5Final call */ } MD5_CTX; -void MD5Init (); -void MD5Update (); -void MD5Final (); +void MD5_Init (MD5_CTX *mdContext); +void MD5_Update (MD5_CTX *mdContext, unsigned char *inBuf, unsigned int inLen); +void MD5_Final (unsigned char hash[], MD5_CTX *mdContext); -#define __MD5_INCLUDE__ -#endif /* __MD5_INCLUDE__ */ +#endif /* USE_MD5 */ +#endif /* PPP_MD5_H */