summaryrefslogtreecommitdiffstats
path: root/crypthash.h
blob: 0d1ededdbc366cafd57dbc474b1bfd178d1f79b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _CRYPTHASH_H
# define _CRYPTHASH_H


# include <sys/types.h>
# if HAVE_INTTYPES_H
#  include <inttypes.h>
# else
#  if HAVE_STDINT_H
#   include <stdint.h>
#  endif
# endif

/* POINTER defines a generic pointer type */
typedef unsigned char *POINTER;

#endif