source: trunk/include/sh_tiger.h@ 130

Last change on this file since 130 was 107, checked in by rainer, 17 years ago

Fix incorrect handling of files with zero size in GrowingLogFiles.

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