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 |
|
---|
9 | typedef enum {
|
---|
10 | TIGER_FILE,
|
---|
11 | TIGER_FD,
|
---|
12 | TIGER_DATA
|
---|
13 | } TigerType;
|
---|
14 |
|
---|
15 | extern SL_TICKET tiger_fd;
|
---|
16 |
|
---|
17 | /* the checksum function
|
---|
18 | */
|
---|
19 | /*@owned@*/ char * sh_tiger_hash (const char * filename, TigerType what,
|
---|
20 | UINT64 Length);
|
---|
21 |
|
---|
22 | /* NEW Thu Oct 18 19:59:08 CEST 2001
|
---|
23 | */
|
---|
24 | int sh_tiger_hashtype (const char * c);
|
---|
25 | char * sh_tiger_generic_hash (char * filename, TigerType what,
|
---|
26 | UINT64 Length, int timeout);
|
---|
27 |
|
---|
28 | UINT32 * sh_tiger_hash_uint32 (char * filename,
|
---|
29 | TigerType what,
|
---|
30 | UINT64 Length);
|
---|
31 |
|
---|
32 | /* get the type of hash function used
|
---|
33 | * 0 = tiger192, 1 = sha1, 2 = md5
|
---|
34 | */
|
---|
35 | int sh_tiger_get_hashtype ();
|
---|
36 |
|
---|
37 | /* GnuPG-like format
|
---|
38 | */
|
---|
39 | /*@owned@*/ char * sh_tiger_hash_gpg (const char * filename, TigerType what,
|
---|
40 | UINT64 Length);
|
---|
41 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.