Changeset 746 for vendor/current/lib/crypto/md5.h
- Timestamp:
- Nov 27, 2012, 4:56:06 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/lib/crypto/md5.h
r414 r746 6 6 #endif 7 7 8 #ifdef HAVE_MD5_H 9 /* 10 * Try to avoid clashes with Solaris MD5 implementation. 11 * ...where almost all implementations follows: 12 * "Schneier's Cryptography Classics Library" 13 */ 14 #include <md5.h> 15 #else 16 8 17 struct MD5Context { 9 18 uint32_t buf[4]; … … 11 20 uint8_t in[64]; 12 21 }; 22 typedef struct MD5Context MD5_CTX; 13 23 14 24 void MD5Init(struct MD5Context *context); … … 17 27 void MD5Final(uint8_t digest[16], struct MD5Context *context); 18 28 29 #endif /* !HAVE_MD5_H */ 30 19 31 #endif /* !MD5_H */
Note:
See TracChangeset
for help on using the changeset viewer.