Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef MD5_I_H
00016 #define MD5_I_H
00017
00018 struct MD5Context {
00019 u32 buf[4];
00020 u32 bits[2];
00021 u8 in[64];
00022 };
00023
00024 void MD5Init(struct MD5Context *context);
00025 void MD5Update(struct MD5Context *context, unsigned char const *buf,
00026 unsigned len);
00027 void MD5Final(unsigned char digest[16], struct MD5Context *context);
00028
00029 #endif