X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Fmd5.h;h=be51a52525eeb6131a43c680fad0beb0b589e921;hb=116954d49373438c669eadd764e03ee8ac4211bb;hp=7be26a770d5bd3a47fdcc3f00cbc65959af04a3c;hpb=1571781022499a9d0c32d249f89945d034d1cbff;p=libucw.git diff --git a/lib/md5.h b/lib/md5.h index 7be26a77..be51a525 100644 --- a/lib/md5.h +++ b/lib/md5.h @@ -1,5 +1,11 @@ -#ifndef MD5_H -#define MD5_H +/* + * UCW Library -- MD5 Message Digest + * + * This file is in public domain (see lib/md5.c). + */ + +#ifndef _UCW_MD5_H +#define _UCW_MD5_H typedef u32 uint32; @@ -15,4 +21,4 @@ void MD5Update(struct MD5Context *context, unsigned char const *buf, void MD5Final(unsigned char digest[16], struct MD5Context *context); void MD5Transform(uint32 buf[4], uint32 const in[16]); -#endif /* !MD5_H */ +#endif /* !_UCW_MD5_H */