Changeset 30 for trunk/src/sh_database.c
- Timestamp:
- Apr 27, 2006, 10:40:32 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/sh_database.c
r27 r30 225 225 typedef unsigned char uint8; 226 226 227 typedef struct 228 { 229 uint32 h[4]; 230 uint32 data[16]; 231 uint8 offset; 232 uint32 nblocks; 233 int count; 227 typedef struct md5_ctx 228 { 229 uint32 A; 230 uint32 B; 231 uint32 C; 232 uint32 D; 233 234 uint32 total[2]; 235 uint32 buflen; 236 char buffer[128]; 234 237 } md5Param; 235 236 238 237 239
Note:
See TracChangeset
for help on using the changeset viewer.