| Last change
 on this file since 590 was             170, checked in by katerina, 18 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 |  | 
|---|
| 9 | typedef long int TigerType; | 
|---|
| 10 |  | 
|---|
| 11 | #define TIGER_FILE -1 | 
|---|
| 12 | #define TIGER_DATA -2 | 
|---|
| 13 |  | 
|---|
| 14 | /**************** | 
|---|
| 15 | typedef long int TigerType; | 
|---|
| 16 | typedef 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 | */ | 
|---|
| 27 | char * 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 | */ | 
|---|
| 32 | int sh_tiger_hashtype (const char * c); | 
|---|
| 33 | char * sh_tiger_generic_hash (char * filename, TigerType what, | 
|---|
| 34 | UINT64 * Length, int timeout, | 
|---|
| 35 | char * out, size_t len); | 
|---|
| 36 |  | 
|---|
| 37 | UINT32 * 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 | */ | 
|---|
| 44 | int 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.