- Timestamp:
- 2008-01-17T22:06:55Z (17 years ago)
- Branches:
- master
- Children:
- ac4adf9
- Parents:
- 13857c6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/md5.h
r13857c6 r52744f8 27 27 #include <sys/types.h> 28 28 #include <gmodule.h> 29 #include <stdint.h> 29 30 30 typedef u _int8_t md5_byte_t;31 typedef uint8_t md5_byte_t; 31 32 typedef struct MD5Context { 32 u _int32_t buf[4];33 u _int32_t bits[2];33 uint32_t buf[4]; 34 uint32_t bits[2]; 34 35 unsigned char in[64]; 35 36 } md5_state_t;
Note: See TracChangeset
for help on using the changeset viewer.