Home | Docs | Forums | Lists | Bugs | Planet | Store | GMN | Get Gentoo!
#ifndef MD5_H
#define MD5_H
#include "config.h"
#if HAVE_INTTYPES_H
#include <inttypes.h>
#endif
#if HAVE_STDINT_H
#include <stdint.h>
#ifdef HAVE_INTTYPES_H || HAVE_STDINT_H
#define UINT8 uint8_t
#define UINT32 uint32_t
#else
#define UINT8 unsigned char
#define UINT32 unsigned long
#define UINT32 unsigned int
struct MD5Context {
UINT32 buf[4];