1#ifndef _CRYPTHASH_H 2# define _CRYPTHASH_H 3 4 5# include <sys/types.h> 6# if HAVE_INTTYPES_H 7# include <inttypes.h> 8# else 9# if HAVE_STDINT_H10# include <stdint.h>11# endif12# endif1314/* POINTER defines a generic pointer type */15typedefunsignedchar*POINTER;1617#endif