source: branches/samhain_3_1/include/sh_tiger.h@ 480

Last change on this file since 480 was 170, checked in by katerina, 16 years ago

Plenty of compiler warnings fixed, SQL query length fixed, doc update.

File size: 1.1 KB
Line 
1
2#ifndef SH_TIGER_H
3#define SH_TIGER_H
4
5#include "config_xor.h"
6#include "slib.h"
7#include "samhain.h"
8
9typedef long int TigerType;
10
11#define TIGER_FILE -1
12#define TIGER_DATA -2
13
14/****************
15typedef long int TigerType;
16typedef enum {
17 TIGER_FILE,
18 TIGER_FD,
19 TIGER_DATA
20} TigerType;
21*****************/
22
23#define TIGER_NOLIM ((UINT64)-1)
24
25/* the checksum function
26 */
27char * sh_tiger_hash (const char * filename, TigerType what,
28 UINT64 Length, char * out, size_t len);
29
30/* NEW Thu Oct 18 19:59:08 CEST 2001
31 */
32int sh_tiger_hashtype (const char * c);
33char * sh_tiger_generic_hash (char * filename, TigerType what,
34 UINT64 * Length, int timeout,
35 char * out, size_t len);
36
37UINT32 * sh_tiger_hash_uint32 (char * filename,
38 TigerType what,
39 UINT64 Length, UINT32 * out, size_t len);
40
41/* get the type of hash function used
42 * 0 = tiger192, 1 = sha1, 2 = md5
43 */
44int sh_tiger_get_hashtype (void);
45
46/* GnuPG-like format, returns allocated memory
47 */
48/*@owned@*/ char * sh_tiger_hash_gpg (const char * filename, TigerType what,
49 UINT64 Length);
50#endif
Note: See TracBrowser for help on using the repository browser.