blob: b0d7079713418815654407077d3580564ed755da (
plain)
1
2
3
4
5
6
7
8
9
10
11
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
|