wpa_supplicant / hostapd  2.5
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
md5_i.h
Go to the documentation of this file.
1 
5 #ifndef MD5_I_H
6 #define MD5_I_H
7 
8 struct MD5Context {
9  u32 buf[4];
10  u32 bits[2];
11  u8 in[64];
12 };
13 
14 void MD5Init(struct MD5Context *context);
15 void MD5Update(struct MD5Context *context, unsigned char const *buf,
16  unsigned len);
17 void MD5Final(unsigned char digest[16], struct MD5Context *context);
18 
19 #endif /* MD5_I_H */
Definition: md5_i.h:8