create a lib-hash.a with sha1 and md5.
[apps/madmutt.git] / lib-hash / hash.h
diff --git a/lib-hash/hash.h b/lib-hash/hash.h
new file mode 100644 (file)
index 0000000..23e77c8
--- /dev/null
@@ -0,0 +1,29 @@
+/*
+ * Copyright notice from original mutt:
+ * [none]
+ *
+ * This file is part of mutt-ng, see http://www.muttng.org/.
+ * It's licensed under the GNU General Public License,
+ * please see the file GPL in the top level source directory.
+ */
+
+#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;
+
+#include "sha1.h"
+#include "md5.h"
+
+#endif