Update of /cvsroot/bitcollider/bitcollider/include
In directory usw-pr-cvs1:/tmp/cvs-serv3788/include
Modified Files:
tiger.h
Log Message:
Fixed the tiger hash digest generation for big endian machines.
Index: tiger.h
===================================================================
RCS file: /cvsroot/bitcollider/bitcollider/include/tiger.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** tiger.h 2001/04/03 23:53:49 1.2
--- tiger.h 2001/08/21 17:55:33 1.3
***************
*** 21,26 ****
#endif
! typedef unsigned long word32;
! typedef unsigned char byte;
void tiger(word64 *str, word64 length, word64 *res);
--- 21,27 ----
#endif
! typedef unsigned long word32;
! typedef unsigned short word16;
! typedef unsigned char byte;
void tiger(word64 *str, word64 length, word64 *res);
|