aboutsummaryrefslogtreecommitdiff
path: root/tests/cube2hash/tiger.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cube2hash/tiger.h')
-rw-r--r--tests/cube2hash/tiger.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/cube2hash/tiger.h b/tests/cube2hash/tiger.h
new file mode 100644
index 00000000..b0d70797
--- /dev/null
+++ b/tests/cube2hash/tiger.h
@@ -0,0 +1,12 @@
+#ifndef _TIGER_H
+#define _TIGER_H
+
+union hashval
+{
+ unsigned char bytes[3*8];
+ unsigned long long int chunks[3];
+};
+
+void tiger_hash(const unsigned char *str, int length, union hashval *val);
+
+#endif