Imported Upstream version 0.72

This commit is contained in:
TANIGUCHI Takaki
2009-11-21 16:29:02 +09:00
commit a39ce4fddf
879 changed files with 252874 additions and 0 deletions

21
md5.h Normal file
View File

@@ -0,0 +1,21 @@
#ifndef MD5_H
#define MD5_H
#if defined(PNGPACK) || defined(SIMPLE_MD5SUM)
typedef unsigned int guint32;
#endif
typedef struct MD5Context {
guint32 buf[4];
guint32 bits[2];
unsigned char in[64];
} MD5Context;
void MD5Init(struct MD5Context *context);
void MD5Update(struct MD5Context *context, unsigned char const *buf,
unsigned len);
void MD5Final(unsigned char digest[16], struct MD5Context *context);
void AsciiDigest(char*, unsigned char*);
#endif /* MD5_H */