|
wpa_supplicant / hostapd 2.0
|
00001 00010 #ifndef MD5_I_H 00011 #define MD5_I_H 00012 00013 struct MD5Context { 00014 u32 buf[4]; 00015 u32 bits[2]; 00016 u8 in[64]; 00017 }; 00018 00019 void MD5Init(struct MD5Context *context); 00020 void MD5Update(struct MD5Context *context, unsigned char const *buf, 00021 unsigned len); 00022 void MD5Final(unsigned char digest[16], struct MD5Context *context); 00023 00024 #endif /* MD5_I_H */ 00025
1.7.3