X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=pppd%2Fmd4.h;h=546ea02a8d6967affb32153ae60c1be6c815af07;hb=509f04959ad891d7f981f035ed461d51bd1f74b0;hp=b6fc3f561faa670f0ac1087e49242dfc832dba8a;hpb=c58bf2e8023dd846683f09cb00e15d64143dac8c;p=ppp.git diff --git a/pppd/md4.h b/pppd/md4.h index b6fc3f5..546ea02 100644 --- a/pppd/md4.h +++ b/pppd/md4.h @@ -7,6 +7,17 @@ ** (C) 1990 RSA Data Security, Inc. ** ** ******************************************************************** */ +#ifndef PPP_MD4_H +#define PPP_MD4_H + +#include "pppdconf.h" + +#ifndef USE_MD4 +#include +#define MD4Init MD4_Init +#define MD4Update MD4_Update +#define MD4Final MD4_Final +#else /* MDstruct is the data structure for a message digest computation. */ @@ -53,3 +64,5 @@ extern void MD4Final(unsigned char *, MD4_CTX *); /* ** End of md4.h ****************************(cut)***********************************/ +#endif /* USE_MD4 */ +#endif /* PPP_MD4_H */