Imported Upstream version 0.72
This commit is contained in:
21
md5.h
Normal file
21
md5.h
Normal 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 */
|
||||
Reference in New Issue
Block a user