hashing.h 322 B

123456789101112
  1. #ifndef HASHING_H_GUARD_
  2. #define HASHING_H_GUARD_
  3. #include "global-state.h"
  4. void PUHS_Hash_Dhash_64bit ( Imagefile * ifl );
  5. void PUHS_Hash_Dhash_256bit ( Imagefile * ifl );
  6. void PUHS_Compare_Hashes_64bit ( Imagefile * im1, Imagefile * im2 );
  7. void PUHS_Compare_Hashes_256bit ( Imagefile * im1, Imagefile * im2 );
  8. #endif