1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
#ifndef _MD5_H_
#define _MD5_H_
#ifdef __cplusplus
extern "C" {
#endif
#include <sys/types.h>
#define MD5_HASHBYTES 16
#ifndef __LCLINT__
#ifdef WIN32
typedef unsigned __int32 u_int32_t;
#elif defined(__osf__)
typedef unsigned int u_int32_t;
#elif !defined(__linux__) && !defined(__NetBSD__) && !defined(__GLIBC__)
typedef uint32_t u_int32_t;
#endif
#endif
typedef struct MD5Context {
u_int32_t buf[4];
u_int32_t bits[2];
unsigned char in[64];
} MD5_CTX;
extern void MD5Init(MD5_CTX *context);
extern void MD5Update(MD5_CTX *context, unsigned char const *buf,
unsigned len);
extern void MD5Final(unsigned char digest[MD5_HASHBYTES], MD5_CTX *context);
extern void MD5Transform(u_int32_t buf[4], u_int32_t const in[16]);
extern char * MD5End(MD5_CTX *, char *);
extern char * MD5File(const char *, char *);
extern char * MD5Data (const unsigned char *, unsigned int, char *);
#ifdef __cplusplus
}
#endif
#endif /* !_MD5_H_ */
|