Changeset 2418 in kBuild
- Timestamp:
- Sep 15, 2010 10:56:04 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/md5.c
r1000 r2418 20 20 #define uint32 uint32_t 21 21 22 #if 0 /* don't need 100% correct md5, just fast md5. */ 23 #ifdef sgi 24 #define HIGHFIRST 25 #endif 26 27 #ifdef sun 28 #define HIGHFIRST 29 #endif 30 #endif /* skip this */ 31 32 #ifndef HIGHFIRST 33 #define byteReverse(buf, len) /* Nothing */ 22 #include "k/kDefs.h" 23 24 #if K_ENDIAN == K_ENDIAN_LITTLE 25 # define byteReverse(buf, len) do { /* Nothing */ } while (0) 34 26 #else 35 27 /* … … 112 104 113 105 /* 114 * Final wrapup - pad to 64-byte boundary with the bit pattern 106 * Final wrapup - pad to 64-byte boundary with the bit pattern 115 107 * 1 0* (64-bit count of bits processed, MSB-first) 116 108 */
Note:
See TracChangeset
for help on using the changeset viewer.