Changeset 18 for trunk/src/sh_tiger2.c
- Timestamp:
- Jan 28, 2006, 9:07:52 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/sh_tiger2.c
r1 r18 23 23 24 24 25 #if !defined(HAVE_LONG_64) && !defined(HAVE_LONG_LONG_64) 26 25 #if !defined(TIGER_64_BIT) 26 27 /* #if !defined(HAVE_LONG_64) && !defined(HAVE_LONG_LONG_64) */ 27 28 28 29 /* sboxes32.c: Tiger S boxes for 32-bit-only compilers */ 29 typedef unsigned long word32; 30 word32 tiger_table[4*256][2] = { 30 #if defined(HAVE_INT_32) 31 typedef unsigned int sh_word32; 32 #elif defined(HAVE_LONG_32) 33 typedef unsigned long sh_word32; 34 #elif defined(HAVE_SHORT_32) 35 typedef unsigned short sh_word32; 36 #else 37 #error No 32 bit type found ! 38 #endif 39 40 sh_word32 tiger_table[4*256][2] = { 31 41 { 0xF7E90C5E, 0x02AAB17C /* 0 */}, { 0xE243A8EC, 0xAC424B03 /* 1 */}, 32 42 { 0x0DD5FCD3, 0x72CD5BE3 /* 2 */}, { 0xF6F97F3A, 0x6D019B93 /* 3 */},
Note:
See TracChangeset
for help on using the changeset viewer.