Main Page | Alphabetical List | Data Structures | Directories | File List | Data Fields | Globals

md5.h

Go to the documentation of this file.
00001 #ifndef MD5_H
00002 #define MD5_H
00003 
00004 #include <inttypes.h>
00005 
00006 struct MD5Context {
00007    uint32_t buf[4];
00008    uint32_t bits[2];
00009    unsigned char in[64];
00010 };
00011 
00012 void MD5Init(struct MD5Context *context);
00013 void MD5Update(struct MD5Context *context, unsigned char const *buf,
00014           unsigned len);
00015 void MD5Final(unsigned char digest[16], struct MD5Context *context);
00016 void MD5Transform(uint32_t buf[4], uint32_t const in[16]);
00017 
00018 #endif /* !MD5_H */

Generated on Sat Nov 25 19:09:40 2006 for Asterisk by  doxygen 1.4.2